如何让代码只运行一次。
我正在开发一个 zencart 网站,我想让 php 在用户第一次打开我的网站时更新网站设置信息,但之后不再运行这些代码。怎么做?
<?php
//how to let codes runs only one time.
//cookie and session?
function first_time_run(){
//lot of code runs when user open my site at first time in browser (such as ie ,firefox)
//but when it go to other page of my site or reenter my same page ,these codes will not run any more;
//but if user reopen the browser , then enter my site ,thes codes will runs again
}
if($what){
first_time_run();
}
?>