PHP 8.4.26 Released!

Installation

Information for installing this PECL extension may be found in the manual chapter titled Installation of PECL extensions. Additional information such as new releases, downloads, source files, maintainer information, and a CHANGELOG, can be located here: » https://pecl.php.net/package/taint.

Install it with PECL:

$ pecl install taint

The source code is hosted on » GitHub. To build the extension from source:

$ git clone https://github.com/laruence/taint.git
$ cd taint
$ phpize
$ ./configure
$ make
$ sudo make install

Then enable the extension by adding extension=taint.so (or extension=php_taint.dll on Windows) to php.ini, and set taint.enable to 1.

Warning

Taint is a development and auditing tool. Do not enable it in production environments: the instrumentation slows every request down and disables the OPcache JIT, and the warnings may leak request data into logs.

+add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top