Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/geekcom/php-extension-hello

php-extension-hello
https://github.com/geekcom/php-extension-hello

Last synced: 8 days ago
JSON representation

php-extension-hello

Awesome Lists containing this project

README

        

# Hello World - A PHP Unix Extension

With docker and docker-compose installed:

* `docker-compose up -d`
* `docker exec -it php82 bash`

How to compile and test:

* `docker exec -it php82 phpize`
* `docker exec -it php82 ./configure`
* `docker exec -it php82 make`
* `docker exec -it php82 make test TESTS=tests/hello.phpt`
* `docker exec -it php82 make install`
* `docker exec -it php82 php -d extension=hello.so -r 'hello();'`

[email protected]