I'm working on a large software project to retrieve, parse, and ingest similar data from a variety of sources and formats. We'd like to use object oriented programming where possible to keep the code maintainable and scalable. We've determined that c++ would be a great language to do this. Many of our scripts that interface with the data are in Perl, PHP, and Python. Most of the time, we can do queries and data manipulation in the respective language. But it would be great to also tap into the power and already written code of C++
Is it possible to import, inherit, include, etc. a C++ library or compiled code into PHP?
Thanks for any insight.
Mark