swoole/phpx

C++ wrapper for Zend API

Maintainers

Details

github.com/swoole/phpx

Source

Issues

Installs: 3

Dependents: 1

Suggesters: 0

Security: 0

Stars: 829

Watchers: 70

Forks: 102

Open Issues: 1

Language:C++

v2.0.1 2025-08-23 01:47 UTC

This package is auto-updated.

Last update: 2025-08-23 01:51:54 UTC


README

Swoole Logo

Twitter Discord Build Status License Latest Release Codecov

C++ wrapper for Zend API

Requirements

  • PHP 8.1 or later
  • Linux/macOS/Windows
  • GCC 4.8 or later
  • Composer

Build phpx (bin)

./build.sh
sudo cp bin/phpx /usr/local/bin

Build libphpx.so

cmake .
make -j 4
sudo make install
sudo ldconfig

Create Project

phpx create cpp_ext

Generate ArgInfo & Function Entires

php bin/gen_stub.php your_stub_dir

Build extension

cd examples/cpp_ext
phpx build -v
sudo phpx install

Load your extension

Edit php.ini, add extension=cpp_ext.so

Run

php echo.php