]> git.pld-linux.org Git - packages/php.git/blob - php-cli.ini
- up to 8.0.7; soname to reflect that this is php 8
[packages/php.git] / php-cli.ini
1 ; php-cli.ini - configuration used only for cli SAPI
2 ;
3 ; Please note that, unlikely in original php distributions, this file
4 ; is read AFTER (not instead of) reading global /etc/php/php.ini.
5 ;
6 ; It allows you to control global settings for all SAPIs in one place
7 ; and override some settings in SAPI-specific files without need of
8 ; copying whole large php.ini.
9
10 [PHP]
11 ; This combination (display_errors=off; log_errors=on; error_log ="") allows
12 ; fatal errors go to STDERR only. We set these separately here, that we won't
13 ; be affected by global php.ini
14 display_errors = Off
15 log_errors = On
16
17 ; Disable error logging, in case it was enabled in global php.ini
18 error_log = ""
19
20 ; Whether or not to enable the dl() function.
21 ; http://php.net/enable-dl
22 enable_dl = On
23
24 [Session]
25 ; argument passed to save_handler in the case of files, this is the
26 ; path where data files are stored.
27 session.save_path = /tmp
This page took 0.02906 seconds and 3 git commands to generate.