1. 程式人生 > >除錯,列印TXT檔案,列印TXT日誌, file_put_contents()

除錯,列印TXT檔案,列印TXT日誌, file_put_contents()

file_put_contents() 函式用於把字串寫入檔案,成功返回寫入到檔案內資料的位元組數,失敗則返回 FALSE。 file_put_contents('seshi123.txt', "\r\n 商鋪id:$shop_id111, \r\n 商鋪id2:$shop_id, ", FILE_APPEND);

為了方便檢視  寫入的內容加了兩個換行符,看下圖的TXT檔案內容,就是存了兩遍後的結果。

file_put_contents('seshi123.txt', "\r\n \r\n 商鋪id:$shop_id, \r\n 商鋪id111:$shop_id, ", FILE_APPEND);

     

配套使用效果更佳:用的時候只需要替換紅色字型: $date = date('Y-m-d H:i:s',time());  file_put_contents('123.txt',"\r\n \r\n【 $date 】 \r\n 商鋪id:$shop_id ",FILE_APPEND);