我想知道是否可以从 AS3 调用 PHP 脚本并让它只识别回显的变量。例如。
我的 PHP 脚本名为 GetMyVars.php
<?
Some code...
more code..
// I want to get these vars below into flash as3
echo "$MyVars"
echo "$MoreVars"
?>
Flash AS3 脚本调用 GetMyVars.php
var fl_TextLoader:URLLoader = new URLLoader();
var fl_TextURLRequest:URLRequest = new URLRequest("GetMyVars.php");
fl_TextLoader.addEventListener(Event.COMPLETE, fl_CompleteHandler);
function fl_CompleteHandler(event:Event):void
{
var textData:String = new String(fl_TextLoader.data);
trace(fl_TextLoader.MyVars); /// I want this var in Flash
trace(fl_TextLoader.MoreVars); /// and this one too. :)
}
fl_TextLoader.load(fl_TextURLRequest);
或者最好的方法是什么。简而言之,我想做的是有一个充满图像的文件夹。我希望 php 读取这些图像并将它们分解为数组。然后我希望能够让 Flash 将文件名放入一个数组中并加载相互叠加的图像。也许有一种更简单的方法可以做到这一点。谢谢你的帮助。