Hacker News new | ask | show | jobs
by aniketh 6124 days ago
Wouldn't it be possible to write any additional functionality as a PHP extension in C/C++? This effectively becomes low entry with immense power...
1 comments

C/C++ are low level languages. C++ has object orientation, but talking to C++ from Zend is very tedious (if I am not mistaken, you essentially end up passing objects as void pointers).

Python, Ruby, Perl, Java, Erlang, allow you to do systems-programming (i.e. writing daemons, doing threading and high performance event driven/non-blocking I/O) while still retaining high-level features such as reflection/meta programming.