コードを 1 回だけ実行する方法。
私は zencart Web サイトを開発しています。ユーザーが初めてサイトを開いたときに、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();
}
?>