หมวดหมู่: HTML
<input type="file" name="myImage" accept="image/png, image/gif, image/jpeg" />
วันที่โพสต์: 2024-10-15 08:41:49หมวดหมู่: HTML
body, html {
user-select: none;
}
หมวดหมู่: HTML
<Select name="month">
<Option value="-">เดือน</option>
<Option value="01">มกราคม</option>
<Option value="02">กุมภาพันธ์</option>
<Option value="03">มีนาคม</option>
<Option value="04">เมษายน</option>
<Option value="05">พฤษภาคม</option>
<Option value="06">มิถุนายน</option>
<Option value="07">กรกฎาคม</option>
<Option value="08">สิงหาคม</option>
<Option value="09">กันยายน</option>
<Option value="10">ตุลาคม</option>
<Option value="11">พฤศจิกายน</option>
<Option value="12">ธันวาคม</option>
</Select>
หมวดหมู่: git
https://stackoverflow.com/questions/21820715/how-to-install-latest-version-of-git-on-centos-8-x-7-x-6-x
วันที่โพสต์: 2024-10-15 08:41:49หมวดหมู่: git
# Remove the files from the index (not the actual files in the working copy)
$ git rm -r --cached .
# Add these removals to the Staging Area...
$ git add .
# ...and commit them!
$ git commit -m "Clean up ignored files"
หมวดหมู่: git
git reset --hard HEAD
git clean -f -d
git pull
หมวดหมู่: git
สร้าง branch
git branch develop#
จากนั้นเราจะทำการเข้าไปใช้ branch develop# นั้น
git checkout develop#
ตรวจสอบ branch ของเรา
git branch
หมวดหมู่: PHP
$myfield_arr = array_column($query_result, 'myfield_name');
วันที่โพสต์: 2024-10-15 08:41:49หมวดหมู่: PHP
$data = 'data:image/png;base64,AAAFBfj42Pj4';
list($type, $data) = explode(';', $gdImage);
list(, $data) = explode(',', $data);
$data = base64_decode($data);
file_put_contents(public_path('qrcode/' . $id . '.png'), $data);
หมวดหมู่: PHP
public function searcharray($value, $key, $array) {
foreach ($array as $k => $val) {
if ($val[$key] == $value) {
return $k;
}
}
return null;
}
Usage: $results = searcharray('searchvalue', searchkey, $array);
หมวดหมู่: PHP
$search_array = array('first' => 1, 'second' => 4);
if (array_key_exists('first', $search_array)) {
echo "The 'first' element is in the array";
}
หมวดหมู่: PHP
$input = "Alien";
echo str_pad($input, 10); // produces "Alien "
echo str_pad($input, 10, "-=", STR_PAD_LEFT); // produces "-=-=-Alien"
echo str_pad($input, 10, "_", STR_PAD_BOTH); // produces "__Alien___"
echo str_pad($input, 6, "___"); // produces "Alien_"
echo str_pad($input, 3, "*"); // produces "Alien
หมวดหมู่: PHP
$temp = array("abc","xyz");
$result = "'" . implode ( "', '", $temp ) . "'";
echo $result; // 'abc', 'xyz'
หมวดหมู่: PHP
$month = array(
"",
"มกราคม",
"กุมภาพันธ์",
"มีนาคม",
"เมษายน",
"พฤษภาคม",
"มิถุนายน",
"กรกฎาคม",
"สิงหาคม",
"กันยายน",
"ตุลาคม",
"พฤศจิกายน",
"ธันวาคม"
);
หมวดหมู่: Laravel
->with(['subjects' => function ($q){
$q->orderBy('updated_at', 'DESC');
}]);
หมวดหมู่: Laravel
$flight = UserInfo::updateOrCreate(
[
'user_id' => Auth::user()->id,
],
[
'about' => $request->get('about'),
'sec_email' => $request->get('sec_email'),
'gender' => $request->get("gender"),
'country' => $request->get('country'),
'dob' => $request->get('dob'),
'address' => $request->get('address'),
'mobile' => $request->get('cell_no')
],
);
หมวดหมู่: Laravel
DB::statement('SET FOREIGN_KEY_CHECKS=0;');
DB::table('departments')->truncate();
DB::statement('SET FOREIGN_KEY_CHECKS=1;');
หมวดหมู่: Laravel
https://github.com/orangehill/iseed
Edit | Delete
หมวดหมู่: Laravel
php artisan make:seeder classNameTableSeeder
php artisan db:seed --class=classNameTableSeeder
php artisan db:seed // seed all Class
public function run()
{
DB::table('users')->insert([
'name' => Str::random(10),
'email' => Str::random(10) . '@example.com',
'password' => bcrypt('password'),
]);
}
หมวดหมู่: Laravel
php artisan make:migration alter_your_comment_yourTableName --table=yourTableName
php artisan migrate