Most voted "php-cpp" questions
5 questions
Sort by count of
-
2
votes1
answer112
viewsPHP-CPP Include file inside extension
I am developing a php extension with PHP-CPP, where I need to make a include of a php file within the extension, I am doing this to protect the code. I’m trying this way: Php::Value HomeController…
-
1
votes1
answer50
viewsPHP-CPP Compilation Version
I have a problem with an extension I am compiling in PHP-CPP, because when I compile on my Mac, the local version of it is 20121212, but my Xampp is version 20131226, the problem is that in each…
-
1
votes0
answers112
viewsCompile PHP-CPP extension on Windows
I’m trying to develop a PHP extension with PHP-CPP on Windows. I was able to compile . a and . so of PHP-CPP with Mingw, however, when I compile the extension it does not find phpcpp. h. My File…
-
1
votes0
answers9
viewsHow to compile an extension with phpcpp using LINKER_DEPENDECIES "-lphpcpp"?
I am compiling my first phpcpp extension on macosx Yosemite but I find the error "Ld: library not found for -lphpcpp" how can I resolve this?
php-cppasked 8 years, 2 months ago Kissema Eduardo Rafael 11 -
0
votes0
answers35
viewsHow to combine 2 binary files in 1 with regular interval?
I have a program called Interleave and it comes accompanied by a file Interleave.cpp and I’m trying to use this program to combine 2 files to result in 1 at regular intervals, but I’m not getting…