CakeFest 2024: The Official CakePHP Conference

Instalación

Esta extensión » PECL no se distribuye con PHP.

Se puede encontrar información para la instalación de esta extensión PECL en el capítulo del manual titulado Instalación de extensiones PECL. Se puede encontrar información adicional, tal como nuevos lanzamientos, descargas, ficheros fuente, información de mantenimiento, y un CHANGELOG, aquí: » https://pecl.php.net/package/yaf.

Los binarios de Windows (ficheros DLL) para esta extensión de PECL están disponibles en el sitio web de PECL.

add a note

User Contributed Notes 5 notes

up
-9
qbhust at gmail dot com
8 years ago
Yaf can be installed from source code by:

cd /path/to/yaf-src/
phpize
./configure
make
sudo make install
up
-3
Anonymous
2 years ago
A new PPA repo has been updated to the latest Yaf.
Available on Ubuntu 18.04, 20.04, 20.10, and 21.04

> sudo add-apt-repository ppa:mikespook/php-yaf
> sudo apt-get update
> sudo apt-get install php-yaf
up
-15
vick dot qi at yahoo dot com
7 years ago
PHP 5.4.X-5.6.X should intall yaf version 2.3.4
up
-23
mikespook at gmail dot com
10 years ago
Install PHP-YAF to Ubuntu from PPA:

> sudo add-apt-repository ppa:mikespook/php5-yaf
> sudo apt-get update
> sudo apt-get install php5-yaf
up
-30
alex at corretge dot cat
10 years ago
Yaf is an PECL extension, thus you can simply install it by:

pecl install yaf
To Top