1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Remove non-existing INI directive detect_unicode (#18909)

The detect_unicode was removed and zend.detect_unicode was added in PHP
5.4 (bbf3d43c1e).
This commit is contained in:
Peter Kokot
2025-06-23 23:44:20 +02:00
committed by GitHub
parent 29e94f89db
commit ecc602e3bb
2 changed files with 1 additions and 2 deletions

View File

@@ -4,7 +4,6 @@ Phar: a non-executable zip with no stub named .phar.zip
phar
--INI--
phar.readonly=1
detect_unicode=0
zend.multibyte=0
--FILE--
<?php

View File

@@ -1,7 +1,7 @@
peardir=$(PEAR_INSTALLDIR)
# Skip all php.ini files altogether
PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dopen_basedir= -derror_reporting=1803 -dmemory_limit=-1 -ddetect_unicode=0
PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dopen_basedir= -derror_reporting=1803 -dmemory_limit=-1
WGET = `which wget 2>/dev/null`
FETCH = `which fetch 2>/dev/null`