PHP Conference Fukuoka 2025

Instalación

Esta extensión » PECL no está integrada en PHP.

Información sobre la instalación de estas extensiones PECL puede ser encontrada en el capítulo del manual titulado Instalación de extensiones PECL. Otra información como notas sobre nuevas versiones, descargas, fuentes de archivos, información sobre los mantenedores así como un CHANGELOG, pueden ser encontradas aquí : » https://pecl.php.net/package/ui.

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

add a note

User Contributed Notes 1 note

up
-2
fabappsforall at gmail dot com
11 months ago
This is how I got UI to work on my 64-bit Windows 10 local computer:Step 1: I went to https://pecl.php.net/package/ui and selected the v2.0.0 DLL for WindowsStep 2: I downloaded the version 2.0.0 zipfile for TS and x64Step 3: I created a folder for the extracted files at C:\php_extStep 4: I had DLL-location-related issues with my current version 8.3.11. So I downloaded PHP 7.1.7 from https://windows.php.net/downloads/releases/archives/. Step 5: I extracted the contents from the zipfile and installed in a separate folder called C:\php7.1.7Step 6: Inside Windows=>Control Panel=>System=>Advanced system settings=>Environment Variables, I added C:\php7.1.7 and C:\php_ext into the Administrator Path environment variableStep 7: I also added C:\php7.1.7 and C:\php_ext into the System variables Path environment variableStep 8: I copied C:\php7.1.7\php.ini-production to C:\php7.1.7\php.iniStep 9: In C:\php7.1.7\php.ini I added the entry: extension_dir = "C:\php_ext"Step 10. In C:\php7.1.7\php.ini I added the entry: extension=php_ui.dllStep 11. I ran php --ri ui. It outputted: ui support => enabledStep 12: I ran "php C:\php_ext\gallery.php" and the gallery Windows GUI app worked fine!
To Top