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);

 [……]

閱讀更多