×

php up to date

Examples php programs

Examples php programs
Register Shutdown Function // capture the start time $start_time = microtime(true);   // do some stuff // ...   // display how long the script took echo "execution took: ".         (microtime(true) - $start_time).         "...