类似 PHP 的高级 C 实用程序库
我正在寻找类似 PHP 的高级 C 实用程序库。
我找到了以下库:
所有这些看起来都不错,但我想知道是否有一些 PHP 函数的直接 C 端口。 我的目标是使用已经众所周知的函数原型来加速开发。
I'm looking for a PHP-like high level C utility library.
I've found the following libraries:
- APR = Apache Portable Runtime
- GLib (part of the GTK+ project)
- qlibc
- iMatix' SFL = Standard Function Library
- cbase
All of them looks good, but i'd like to know if there is a straight C port of some PHP functions.
My aim is to speedup development using already well-known functions prototypes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有很多图书馆可以提供各种各样的东西。如果您想要功能与 PHP 完全相同的东西,您可以尝试根据您的需要调整 PHP 源代码。您可以在源代码目录中的
ext/standard/*.c
中找到标准内置函数。(不过,结果可能值得弗兰肯斯坦博士的赞赏)
There are many libraries for all kinds of things. If you want something with functions exactly like PHP's, you could try to adapt the PHP source code to your needs. You can find the standard built-in functions in
ext/standard/*.c
in the source code directory.(the result will likely be worthy of dr. Frankenstein's appreciation though)
我发现这个 扩展 C 标准库正是我正在寻找的。
I've found this eXtended C Standard Library is exactly what i was looking for.