Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/geekcom/php-extension-hello
- Owner: geekcom
- Created: 2019-12-27T16:35:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-17T17:22:59.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T23:39:39.530Z (2 months ago)
- Language: C
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();'`