Jump to content

[SOLVED] PHP and C/C++


NathanBrisk

Recommended Posts

C/C++ are languages where the code is compiled so they run faster than applications in PHP which must be interpreted and turned into bytecode. Although some larger setups with PHP use bytecode caches.

 

C/C++ could be then used to make program extensions for PHP, such as caching system, xml parser, encryption library, alternative database interface etc.

Link to comment
https://forums.phpfreaks.com/topic/61917-solved-php-and-cc/#findComment-308294
Share on other sites

the point to using a complied script like C/C++ is to handle large amounts of data manipulations that would take forever in PHP such as math functions.

php is great for handling lots of little packets from many users however if you are having a large resource load on each user you might have issues with php and need to integrate a complied langauge

Link to comment
https://forums.phpfreaks.com/topic/61917-solved-php-and-cc/#findComment-308319
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.