使用 PHP 替换 SWF/FLASH 文件中的某些字符串
我有一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让 PHP 使用 GET 变量将变量传递到 swf 文件。
http://www.kirupa.com/developer/actionscript/flash_php_mysql.htm
神奇的线条是这样的:
编辑:
考虑完这些选项后,您可能希望将可能更改的字符串存储在 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:
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