是否可以在 Haskell 中创建 PHP 扩展?
是否可以使用 Haskell 创建 PHP 扩展?
通常 PHP 扩展是使用 C 编写的。使用 Haskell FFI 为存根 C 扩展提供功能是否可行(甚至是一个好主意)?
这种方法有哪些注意事项? Zend 是否会在后台施展一些魔法来破坏这样的计划?
Is it possible to create PHP extensions with Haskell?
Usually PHP extensions are written using C. Is using Haskell FFI to provide functionality for a stub C extension possible (or even a good idea)?
What are the caveats to such an approach? Does Zend perform some magic in the background that would disrupt such a scheme?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你当然可以做到这一点,尽管我不确定是否有人尝试过。 Haskell 通过其 FFI 机制与 C 进行互操作,你当然可以:
因此,如果您可以从 PHP 调用 C,并且 C 调用 Haskell,那么您就可以开始工作了。
你为什么要这样做?也许可以为您的核心算法或安全关键代码提供更快、更安全、简单的代码。或者利用 Haskell 的并行或多核服务器后端。
You can certainly do this, though I'm not sure anyone has tried. Haskell interoperates with C via its FFI mechanism, and you can certainly:
so if you can call C from PHP, and that C calls Haskell, you're in business.
Why would you want to do this? Faster, safer, simple code for your core algorithms or safety-critical code, perhaps. Or to take advantage of say, a parallel or multicore server backend via Haskell.
是的,有可能。只要确保包装所有内容并翻译 php -> 之间的参数即可。 c-> haskell 和正确返回的方式。
Yes, its possible. Just make sure you wrap everything and translate arguments between php -> c -> haskell and the way back correctly.