Code: Select all
<?php
// Güncel Zaman
echo date('h:i:s') . "<br>";
// 10 saniye uyu
sleep(10);
// uyan !
echo date('h:i:s');
?>
Code: Select all
<?php
// Güncel Zaman
echo date('h:i:s') . "<br>";
// 10 saniye uyu
sleep(10);
// uyan !
echo date('h:i:s');
?>