1
我想針對從MySQL獲取的時間戳顯示ActionScript 3.0 Timer
。如何在ActionScript 3中獲得關於MySQL時間戳的時間?
因此,假設的MySQL(PHP)返回類似$my_birthday="2013-05-22 12:30:45"
我一個URLLoader
得到它來自ActionScript的字符串,我想表明這樣的計時器:
My age:
01 hours 01 minutes 42 seconds
我應該使用什麼樣的功能:
public function timerHandler(e:TimerEvent)
{
log_textfield.text = String((new Date()).time) - my_birthday; // I need to convert the Date().Time to unix timestamp I guess, and a function for time difference.
}