http://patataptunes.com/[……]
PHP session_unregister() is deprecated PHP5.3替代用法
日本免費圖片網站
PHP 字串存入FTP上的檔案、編輯檔案內容
$str = ‘測試字串’;
$fp = fopen(‘ftp://username:password@ftp.exmple.com/test.txt’,’w’);
fwrite($fp, $str);
fclose($fp);[……]
PHP 將字串寫入檔案,fopen()參數說明
$str = ‘測試字串’;
$fp = fopen(‘text.txt’,’w’);
fwrite($fp, $str);
fclose($fp);
fopen()參數說明
- ‘r’ 開檔案模式為唯讀,檔案指標指到開始處。
- ‘r+’ 開檔案模式為可讀寫,檔案指標指到開始處。
- ‘w’ 開檔案模式為寫入,檔案指標指到開始處,並將原檔案的長度設為 0。若檔案不存在,則建立新檔案。
- ‘w+’ 開檔案模式為可讀寫,檔案指標指到開始處,並將原檔案的長度設為 0。若檔案不存在,則建立新檔案。
- ‘a’ 開檔案模式為寫入,檔案指標指到檔案最後。若檔案不存在,則建立新檔案。
- ‘a+’ 開檔案模式為可讀寫,檔案指標指到檔案最後。若檔案不存在,則建立新檔案。
- ‘b’ 若動作系統的文字及二進位檔案不同,則可以用此參數,UNIX 系統不需要使用本參數。
[……]
jQuery 模擬滑鼠Click事件,觸發綁定事件
trigger 模擬user動作,觸發click事件
$(document).ready(function(e) { $('#test').click(function(e){ alert('觸發綁定事件'); }); $('#test').trigger("click"); $('#test')[0].click; });
http://www.pureexample.com/tw/jquery/custom-event.html[……]
PHP 以 Curl 傳遞 POST 資料,並取得回傳值
Curl 傳遞 POST 資料,並取得回傳值
/** * VECTOR COOL * https://vector.cool */ //用curl傳post並取回傳值 //一定要傳絕對路徑 function curl_post($url,$post) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST,true); curl_setopt($ch, CURLOPT_CUSTOMREQUEST,'POST'); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); $result = curl_exec($ch); curl_close ($ch); return $result; }
使用範例:
/** * VECTOR COOL * https://vector.cool */ $url='http://tw.yahoo.com'; $post_value= array( 'name' => 'JACK', 'age' => '20', 'phone' => '0968123456', 'address' => '台灣' ); echo curl_post($url,$post_value);
[……]
MySQL WHERE 等於 NULL 問題,=NULL會找不到的解決方案
/* 找不到 */
SELECT * FROM news WHERE class = NULL
/* 找不到 */
SELECT * FROM news WHERE class IN ( 0 , 1 , NULL )
/* 要這樣寫 */
SELECT * FROM news WHERE class IS NULL[……]