PHP 中的防病毒集成
我想在我的代码中集成防病毒插件(在用户上传或下载时检查文件,例如雅虎邮件)。我们如何在 PHP 中集成防病毒组件?任何想法或帮助将不胜感激。非常感谢。
I want to integrate antivirus plugin in my code ( To check the files when users are uploading or downloading, Like yahoo mail). How do we integrate an antivirus component inside PHP? Any ideas or help would be appreciated. Thanks a bunch.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于您使用的 AV 解决方案。如果该特定解决方案没有 PHP 绑定,您必须查看是否可以通过系统或 exec 调用触发 av 检查。
实际上提供与 PHP 结合使用的 AV 解决方案的示例是
That depends on which AV solution you are using. If there is no bindings for PHP for that particular solution, you have to see if you can trigger the av check through system or exec calls.
An example of an AV solution that actually does provide bindings for usage with PHP would be
为自己获取一个可从控制台运行的防病毒软件,并使用 shell_exec函数来执行它,分析返回的输出。
Get yourself an antivirus that is runable from the console, and use the shell_exec function to execute it, analyse the returned output.