PHP 8.6.0 Beta 3 is available for testing

Installazione

Yaconf can be installed in one of three ways: via PECL, via PIE, or by building it from source.

Questa estensione » PECL non è incorporata nel PHP.

Informazioni per l'installazione di questa estensione PECL possono essere trovate nel capitolo del manuale intitolato Installazione delle estensioni PECL. Informazioni aggiuntive come nuove release, download, file sorgenti, informazioni del manutentore e un CHANGELOG possono essere trovate qui: » https://pecl.php.net/package/yaconf.

Windows binaries (DLL files) for this PECL extension are available from the PECL website.

Example #1 Installing Yaconf with PECL

pecl install yaconf

Since Yaconf 1.2.0, the extension can be installed with » PIE, the PHP Installer for Extensions, by running the following on the command line.

Example #2 Installing Yaconf with PIE

pie install laruence/yaconf

The source code is hosted on » GitHub. To build the extension from source, run the following on the command line, replacing the paths with those of the local PHP installation.

Example #3 Building Yaconf from source

/path/to/phpize
./configure --with-php-config=/path/to/php-config
make && make install
add a note

User Contributed Notes

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