PHP 8.6.0 Beta 3 is available for testing

Kurulum

Bu PECL eklentisini kurma bilgisi kılavuzun PECL eklentisinin kurulması başlıklı faslında bulunabilir. Yeni dağıtımlar, indirmeler, kaynak dosyaları, sürdürücü bilgileri ve CHANGELOG gibi ek bilgiler şu adreste bulunabilir: » 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.

Uyarı

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