目前分類:Programming (471)
- Oct 08 Tue 2024 16:02
[js] sweet alert text換行
- Jul 17 Wed 2024 15:32
[轉][pgsql] 定期重建索引
- Jul 17 Wed 2024 15:15
[轉][pgsql] PostgreSql重建索引
- Jun 25 Tue 2024 15:48
[Javascript][轉] 檢查物件的 key 是否存在的 N 種方法
- Apr 24 Wed 2024 16:38
[PHP] 將php數組中的鍵名刪除,保留鍵值!
- Apr 10 Wed 2024 17:04
[轉][JS] Async非同步 - async/await筆記
- Feb 23 Fri 2024 15:13
[轉][Linux] 解決出現 too many open files 的問題
- Dec 06 Wed 2023 15:58
[PHP] function closedir
今天發現closedir噴錯closedir(): Argument #1 ($dir_handle) must be of type resource or null, string given
仔細檢查之後發現closedir function裏頭不是帶入dir path,而是dir_handle。
- Nov 30 Thu 2023 18:28
[postman][轉] 解決postman報錯:Error: Maximum response size reached
- Nov 10 Fri 2023 10:30
[PHP] 如何在php curl中加入proxy
- Oct 20 Fri 2023 16:57
[Laravel][轉] Create a Laravel Request object on the fly
- Sep 04 Mon 2023 16:45
[PHP][轉] Retrieve response headers from PHP cURL 如何取得PHP cURL中的header內容
- Jul 28 Fri 2023 15:18
[轉][html] 前端.解決form-contral總是換行問題
- Apr 06 Thu 2023 15:35
[轉] 搬家記錄--從Pixnet到Blogger
- Mar 14 Tue 2023 17:17
[轉][PHP] How To Get the Response Headers with cURL in PHP
轉自 https://blog.devgenius.io/how-to-get-the-response-headers-with-curl-in-php-2173b10d4fc5
--
- Feb 21 Tue 2023 18:06
[轉] Diff Checker 文件檔案比對工具,快速找出兩份文字或程式碼的差異性
- Oct 26 Wed 2022 14:58
[jQuery] jQuery如何選擇style屬性方法
- Oct 26 Wed 2022 14:55
[Tampermonkey] tampermonkey腳本如何插入jQuery
- Sep 27 Tue 2022 15:09
[pgSQL] EXPLAIN ANALYZE
https://docs.postgresql.tw/the-sql-language/performance-tips/using-explain
在SQL指令前面加上EXPLAIN ANALYZE,可以得到該SQL指令的執行時間,方便DB QUERY時間分析使用。
- Sep 27 Tue 2022 14:52
[Laravel] upsert 大批資料更新或新增
Laravel 8.X eloquent終於對大批資料的新增或更新有新的function了
以前需要一筆一筆呼叫firstOrCreate或updateOrCreate,現在可以把多筆資料一次帶入呼叫一次upsert即可。