np43 / php-python

Embedded Python Extension for PHP

Home Page:http://pecl.php.net/package/python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python in PHP

Copyright © 2019 Niraj Patel Copyright © 2002-2012 Jon Parise

Overview

This code is released under the terms of the MIT License. Currently works under php5 and python2 only. This fork will "eventually" upgrade to php7+python3

Requirements

The Python extension has the following system requirements:

  • PHP version 5.2.0 or later
  • PEAR installer version 1.4.3 or later
  • PHP dev headers (php7.3-dev)

Installation

The easiest way to install the extension is by using the PECL installer::

pecl install python

If you're building from source code, should use the --with-python configuration option. If your copy of the Python hasn't been installed in one of the default locations, you can specify it as a parameter::

--with-python=/opt/python

More detailed information on installing PECL packages in general can be found in the Installation of PECL Extensions section of the PHP Manual.

Source Code

This package's source code is hosted on GitHub:

https://github.com/np43/php-python.git

sudo apt-get install --no-install-recommends php7.3-dev python-dev re2c
phpize
./configure --with-python

A number of unit tests are included to help maintain correct and expected behavior. The tests can be run using PECL tool's run-tests command:

pecl run-tests -p python

Additional unit test contributions are welcome, especially when they increase code coverage or exercise specific use cases.

Usage

INI Settings

python.optimize

The python.optimize INI setting controls the Python interpreter's runtime optimization level. This is a global, system-wide setting and therefore can only be set in the PHP.ini file.

When set to 0 (the default), no additional optimizations are enabled, and the built-in __debug__ flag is True.

When set to 1 (equivalent to Python's -O command line option), the Python interpreter will generate optimized bytecode, and the built-in __debug__ flag is set to False.

When set to 2 (equivalent to Python's -OO command line option), the Python doc-strings will be removed in addition to the above optimizations.

Development and Support

Build issues on Debian 10

Reporting Problems and Suggestions

If you run into a problem or would like to make a suggestion, please use the issue tracker. Feel free to contact me directly for other issues, but please try to use the bug tracker whenever possible so that others in the community will benefit from your feedback and my responses.

About

Embedded Python Extension for PHP

http://pecl.php.net/package/python

License:MIT License


Languages

Language:C 84.2%Language:PHP 11.0%Language:M4 2.6%Language:JavaScript 1.6%Language:Python 0.5%