php-extension
stdout from SWIG-generated PHP extension
I have the following C++ function: void foo() { std::cou开发者_如何转开发t << \"bar\" << std::endl;[详细]
2023-01-08 03:38 分类:问答Wrapping boost::shared_ptr in PHP using SWIG
If I use SWIG to wrap this C++ function: boost::shared_ptr<Client> Client::create() { return boost::shared_ptr<Client>(new Client());[详细]
2023-01-07 22:19 分类:问答How do I fix PHP module thread-safe/non-thread-safe mismatch?
This is out of the error log: PHP Warning: PHP Startup: BOPEE Extension: Unable to initialize module Module compiled with build ID=API20090626,TS,VC9[详细]
2023-01-07 09:00 分类:问答Call external library from PHP. What is faster: exec or extension?
I need to make calls from webpage to external library written in C++ and display the result. Platform is Linux, Apache, PHP.[详细]
2023-01-03 12:32 分类:问答Call to undefined function mssql_connect()
I always used PHP 5.2.3 version, but now I updated PHP to version 5.3.2. I have problem with MSSQL, I can`t connect to MSSQL server.[详细]
2023-01-02 18:45 分类:问答How to develop C extensions for PHP apps?
My PHP app has a number-crunching part that is just to slow for PHP, so I was thinking of building a custom C extension, but it is impossible to find any good re开发者_如何学Pythonference to start wit[详细]
2023-01-02 18:38 分类:问答extend php with java/c++?
i only know php and i wonder if you can extend开发者_运维百科 a php web application with c++ or java when needed? i dont want to convert my code with quercus, cause that is very error prone. is there[详细]
2023-01-01 23:06 分类:问答creating PHP C/C++ extension modules using SWIG
I have written some C/C++ extension modules for PHP, using the \'old fashioned way\' - i.e. by using the manual way (as described by Sarah Golemon in her book).[详细]
2023-01-01 09:01 分类:问答How to return array of C++ objects from a PHP extension
I need to have my PHP extension return an array of objects, but I can\'t seem to figure out how to do this.[详细]
2022-12-31 13:47 分类:问答Renaming Functions during runtime in PHP
In PHP 5.3 is there a way to rename a function or \"hook\" a function. There is the rename_function() within \"APD\" which has been broken since ~200开发者_JAVA百科4.If you try and build it on PHP 5.[详细]
2022-12-30 18:08 分类:问答