ActionScript 3 AS3使用简单的PHP脚本从服务器获取时间/日期

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3使用简单的PHP脚本从服务器获取时间/日期相关的知识,希望对你有一定的参考价值。

// AS3 code loads the contents of getDate.php

var ldr:URLLoader = new URLLoader()
ldr.load(new URLRequest("http://www.YOUR-URL.com/getDate.php"))
ldr.addEventListener(Event.COMPLETE, onLoaded)
function onLoaded(evt:Event){
	trace(ldr.data)
}

// getDate.php sits on a server you can access
// and simply outputs the date - the (j) tells it to output the date as a number
// check http://uk.php.net/manual/en/function.date.php for more options on the output
// script contents below (without the comment slashes of course):

//<?php 
//print "&serverDate=".date(j); 
//?>

以上是关于ActionScript 3 AS3使用简单的PHP脚本从服务器获取时间/日期的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3使用简单的PHP脚本从服务器获取时间/日期

ActionScript 3 使用GreenSock LoaderMax进行简单Flash / AS3幻灯片放映

ActionScript 3 AS3简单网格布局

ActionScript 3 简单的TextFormat Manager AS3

ActionScript 3 简单的Facebook使用GraphAPI_Web.Sw​​c在As3中

ActionScript 3 AS3绘制一个简单的矩形蒙版