在Flash AS3中获取DOCUMENT_ROOT?
我正在开发一个连接到 PHP 文件的 AS3 项目。我需要动态完成所有操作,因此我需要一种方法来获取 flash 中的 document_root,就像在 php 中一样 ($_SERVER['DOCUMENT_ROOT'];
)。
这可能吗?知道怎么做吗?
干杯
I'm working on a project in AS3 that connects to a PHP file. I need everything done dynamically so i need a way to get the document_root in flash, like i would in php ($_SERVER['DOCUMENT_ROOT'];
).
is this possible? any idea how?
cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以通过 FlashVars 将
$_SERVER['DOCUMENT_ROOT']
解析为 SWF。然后在 AS3 中:
Could just parse
$_SERVER['DOCUMENT_ROOT']
into the SWF via FlashVars.And then in AS3:
您可以使用
stage.loaderInfo.loaderURL
。You can get the file path of the swf (with swf name) with
stage.loaderInfo.loaderURL
.