/** 将给定的Date输出为YYYYMMDDHHMMSS格式, 如:20100115091809., */ public static function dateToString(date:Date):String { if(date == null) { return null; }else{ return date.fullYear.toString() + (date.month + 1 < 10 ? "0" : "") + (date.month + 1) + (date.date < 10 ? "0" : "") + date.date + (date.hours < 10 ? "0" : "") + date.hours + (date.minutes < 10 ? "0" : "") + date.minutes + (date.seconds < 10 ? "0" : "") + date.seconds; } }
Flex SharedObject 使用举例 <->
// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.