Instalación/Configuración
PHP Manual

Configuración en tiempo de ejecución

El comportamiento de estas funciones se ve afectado por la configuración de php.ini.

Opciones de Configuración Misc.
Nombre Por defecto Cambiable Historial de cambios
ignore_user_abort "0" PHP_INI_ALL  
highlight.string "#DD0000" PHP_INI_ALL  
highlight.comment "#FF8000" PHP_INI_ALL  
highlight.keyword "#007700" PHP_INI_ALL  
highlight.bg "#FFFFFF" PHP_INI_ALL Removed in PHP 5.4.0.
highlight.default "#0000BB" PHP_INI_ALL  
highlight.html "#000000" PHP_INI_ALL  
browscap NULL PHP_INI_SYSTEM  
Para más detalles y definiciones de los modos de PHP_INI_*, vea Dónde se puede realizar un ajuste de configuración.

He aquí una breve explicación de las directivas de configuración.

ignore_user_abort boolean

FALSE por defecto. Si se cambia a TRUE los scripts no finalizarán después de que un cliente aborte su conexión.

Véase también ignore_user_abort().

highlight.bg string
highlight.comment string
highlight.default string
highlight.html string
highlight.keyword string
highlight.string string

Los colores para el modo Highlighting. Cualquier cosa que sea aceptable en <font color="??????"> funcionará.

browscap string

El nombre (p.ej.: browscap.ini) y la localización del archivo de aptitudes del navegador. Véase también get_browser().


Instalación/Configuración
PHP Manual