使用 PHP 替换 SWF/FLASH 文件中的某些字符串

发布于 2025-01-01 13:49:51 字数 187 浏览 0 评论 0原文

我有一些 flash swf 文件,其中我硬编码了一些变量以与动作脚本一起使用,例如 p='mydomain.com'

我想使用 php 脚本将 mydomain.com 的值替换为给定的字符串。我知道这可以使用二进制运算来完成,但对我来说失败了。任何人都可以帮助我找到仅使用 php 内置函数(无第三方语言)的解决方案。

谢谢

I have some flash swf files where i hard coded some variables to use with action script like
p='mydomain.com'

I want to replace the value of mydomain.com with a given string using a php script . I know this can be done using Binary operation, but it failed for me . Can anyone help me to find a solution using php 's built in functions only (No third party language) .

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

但可醉心 2025-01-08 13:49:51

您可以让 PHP 使用 GET 变量将变量传递到 swf 文件。

http://www.kirupa.com/developer/actionscript/flash_php_mysql.htm

神奇的线条是这样的:

loadVariables("http://localhost/test.php", this, "GET");

编辑:

考虑完这些选项后,您可能希望将可能更改的字符串存储在 XML 文件中并在运行时读取值。

http://www.kirupa.com/web/xml/XMLwithFlash3.htm

http://www.kirupa.com/developer/flashcs3/using_xml_as3_pg1.htm

You can have PHP pass variables to the swf file using GET variables.

http://www.kirupa.com/developer/actionscript/flash_php_mysql.htm

The magic line is this:

loadVariables("http://localhost/test.php", this, "GET");

EDIT:

After considering the options, you may want to store strings that are likely to change in an XML file and read the values at runtime.

http://www.kirupa.com/web/xml/XMLwithFlash3.htm

http://www.kirupa.com/developer/flashcs3/using_xml_as3_pg1.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文