Ben gibi Java'nın Timer sınıfı ... bir şey kullanır, bir kitap readen ettik:
final Timer timer = new Timer();
timer.schedule(new TimerTask() {
public void run() {
/* Does something */
timer.cancel();
}
}, 5000);
Is there a way to implement that in PHP? I'm rewrinting the book examples in PHP. Thank you.