We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I usually place extension souce in ext direcory and then run ./buildconf I'm not How to do same for extension developed using PHP-CPP
please guide, how can i do this
The text was updated successfully, but these errors were encountered:
Have a look in the documentation: http://www.php-cpp.com/documentation/your-first-extension
After building the yourextension.so there are two ways to include it in your php installation.
yourextension.so
php.ini
If you don't know where your ini file is:
$ php -i | grep php.ini
Then simply at the bottom at:
[myextension] extension=/path/to/yourextension.so
Or create a custom .ini file something like yourextension.ini and link the extension there.
.ini
yourextension.ini
By running:
$ php --ini
You will find out what folder php is scanning for ini files.
Hope that helps.
Sorry, something went wrong.
No branches or pull requests
I usually place extension souce in ext direcory and then run ./buildconf
I'm not How to do same for extension developed using PHP-CPP
please guide, how can i do this
The text was updated successfully, but these errors were encountered: