Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网上搜索,找到了 cgicc、rudeserver 和 Wt 等,但没有一个适合我的需要。我想要一个可以将所有请求数据解析为 get、post、cookie 和文件数组的库,就像 php 一样。
我曾经使用 PHP 进行 Web 编程,但是当我知道 C++ 比 php 快得多时,我决定改用 C++。
有什么建议么?提前致谢。
我不明白为什么Wt不适合。(您可以使用没有“小部件”的 Wt,仅用于 HTTP 方面)。
您可以制作一个FastCGI应用程序(它可以很好地适应许多现有的 Web 服务器)。
你还可以在你的 C++ 应用程序中嵌入一个 HTTP 服务器,使用一些 HTTP 服务器库,如libonion、libmicrohttpd或poco内部的那个
顺便说一句,PHP 有更好的替代品,例如Opa、ocsigen、kayalang(不需要 C++)。