My Blog Diary

Login


How to allow upload file

หมวดหมู่: HTML

<input type="file" name="myImage" accept="image/png, image/gif, image/jpeg" />

วันที่โพสต์: 2024-10-15 08:41:49

html disable text selection

หมวดหมู่: HTML

body, html {
user-select: none;
}

วันที่โพสต์: 2024-10-15 08:41:49

Option thai month

หมวดหมู่: 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>

วันที่โพสต์: 2024-10-15 08:41:49

install git centos-7

หมวดหมู่: 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 ignore

หมวดหมู่: 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"

วันที่โพสต์: 2024-10-15 08:41:49

How do I force "git pull" to overwrite local files?

หมวดหมู่: git

git reset --hard HEAD
git clean -f -d
git pull

วันที่โพสต์: 2024-10-15 08:41:49

git

หมวดหมู่: git

สร้าง branch
git branch develop#

จากนั้นเราจะทำการเข้าไปใช้ branch develop# นั้น
git checkout develop#

ตรวจสอบ branch ของเรา
git branch

วันที่โพสต์: 2024-10-15 08:41:49

php array 2d to 1d

หมวดหมู่: PHP

$myfield_arr = array_column($query_result, 'myfield_name');

วันที่โพสต์: 2024-10-15 08:41:49

save base64 to image file

หมวดหมู่: 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);

วันที่โพสต์: 2024-10-15 08:41:49

PHP multidimensional array search by value

หมวดหมู่: 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);

วันที่โพสต์: 2024-10-15 08:41:49

array_key_exists

หมวดหมู่: PHP

$search_array = array('first' => 1, 'second' => 4);
if (array_key_exists('first', $search_array)) {
echo "The 'first' element is in the array";
}

วันที่โพสต์: 2024-10-15 08:41:49

PHP str_pad

หมวดหมู่: 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

วันที่โพสต์: 2024-10-15 08:41:49

PHP add single quotes to comma separated list

หมวดหมู่: PHP

$temp = array("abc","xyz");

$result = "'" . implode ( "', '", $temp ) . "'";

echo $result; // 'abc', 'xyz'

วันที่โพสต์: 2024-10-15 08:41:49

PHP array เดือนไทย

หมวดหมู่: PHP

$month = array(

"",

"มกราคม",

"กุมภาพันธ์",

"มีนาคม",

"เมษายน",

"พฤษภาคม",

"มิถุนายน",

"กรกฎาคม",

"สิงหาคม",

"กันยายน",

"ตุลาคม",

"พฤศจิกายน",

"ธันวาคม"

);

วันที่โพสต์: 2024-10-15 08:41:49

laravel order by relation column

หมวดหมู่: Laravel

->with(['subjects' => function ($q){
$q->orderBy('updated_at', 'DESC');
}]);

วันที่โพสต์: 2024-10-15 08:41:49

updateOrCreate

หมวดหมู่: 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')
],
);

วันที่โพสต์: 2024-10-15 08:41:49

truncate

หมวดหมู่: Laravel

DB::statement('SET FOREIGN_KEY_CHECKS=0;');
DB::table('departments')->truncate();
DB::statement('SET FOREIGN_KEY_CHECKS=1;');

วันที่โพสต์: 2024-10-15 08:41:49

seed generator from database

หมวดหมู่: Laravel

https://github.com/orangehill/iseed

Edit | Delete

วันที่โพสต์: 2024-10-15 08:41:49

db:seed

หมวดหมู่: 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'),
]);
}

วันที่โพสต์: 2024-10-15 08:41:49

migration Alter

หมวดหมู่: Laravel

php artisan make:migration alter_your_comment_yourTableName --table=yourTableName

php artisan migrate

วันที่โพสต์: 2024-10-15 08:41:49