วันพฤหัสบดีที่ 14 ตุลาคม พ.ศ. 2553

แทรกคำสั่ง php คำสั่งที่จะ run ทุกครั้งเสมอ

<?php
function always_run(){
echo 'end of file.';
$dir = dirname(__FILE__);
file_put_contents($dir.'/example.txt',rand(1,1000));
}
register_shutdown_function('always_run');

sleep(3); //แม้ว่าจะกด stop ไปแล้วแต่ก็จะ run always_run() เสมอ เป็นคำสั่งสุดท้ายของหน้านี้
//อาจจะประยุกต์ใช้ในการ close database connection หรือการแทรกไฟล์ footer ได้

echo 'hello.<br />';
?>

ไม่มีความคิดเห็น:

แสดงความคิดเห็น