AS3使用一个简单的PHP脚本从服务器获取时间/日期
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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); //?>
以上是关于AS3使用一个简单的PHP脚本从服务器获取时间/日期的主要内容,如果未能解决你的问题,请参考以下文章
动作脚本 3,注册,数据发送到 php,但 AS3 不会显示数据返回但没有错误