Dutch PHP Conference 2027

Installation

Information zur Installation dieser PECL-Erweiterung finden sie im Kapitel Installation von PECL-Erweiterungen. Zusätzliche Informationen wie neue Releases, Downloads, Quelldateien, Maintainerinformation und ein CHANGELOG finden Sie hier: » 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.

Warnung

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