用 java/c 扩展 php++?
我只知道 php,我想知道您是否可以在需要时使用 c++ 或 java 扩展 php Web 应用程序?我不想用 quercus 转换我的代码,因为这很容易出错。还有其他方法可以扩展它吗?
因为根据我读过的内容,python 可以用 c++ 扩展它,而无需转换 python 代码,并将 java 与 jython 一起使用?
i only know php and i wonder if you can extend a php web application with c++ or java when needed? i dont want to convert my code with quercus, cause that is very error prone. is there another way to extend it?
cause from what i have read python can extend it with c++ without converting the python code and use java with jython?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数 PHP 都是用模块化 C 代码编写的。您可以用 C 语言创建自己的 PHP 扩展。请参阅 http://php.net/internals,PHP wiki 以及 Sara Golemon 所著的《扩展和嵌入 PHP》一书。
Most of PHP is written in modular C code. You can create your own PHP extensions in C. See http://php.net/internals, the PHP wiki and the book "Extending and Embedding PHP" by Sara Golemon.