PHP 应用程序如何判断加载的 swf 影片是否使用 clickTAG
该信息以及有关电影的其他信息,例如宽度、高度、持续时间、帧速率以及是否发出其他 urlRequest。
我需要这个用于横幅管理系统。
That and other information about the movie, like the width, height, duration, framerate and if it make other urlRequest.
I need this for a banner management system.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以考虑使用外部接口,让 swf 告诉您的 php 应用程序是什么。
swf 可以调用页面中的 javascript 函数,向其发送您感兴趣的参数列表,并将其传递给 php。不过,这只在 swf 不具有病毒性的情况下才真正适用。
如果您无法控制 swf 的嵌入位置,您可以将带有名称对值(宽度、高度等)的 post 请求发送到 php 页面。
正如 timwebdev 所说,AMFPHP 将是 swf/后端通信的一个很好的解决方案。
如果我对您的要求有更好的了解,我也许可以提出更相关的解决方案。
You could maybe look into using the external interface and let the swf just tell your php app whats what.
The swf could call a javascript function in the page sending it a list of parameters you are interested in and pass it on to the php. This only really applies if the swf is not viral though.
If you have no control of where the swf is embedded you could just send a post request with name pair values (width, height etc) to a php page.
Also as timwebdev says AMFPHP would be a good solution for swf / backend communication.
If I had a better idea of your requirements I might be able to suggest a more relevant solution.