mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-8.4'
* PHP-8.4: Reduce regex backtracking in phpinfo.phpt
This commit is contained in:
commit
2bc3df8196
1 changed files with 13 additions and 13 deletions
|
@ -16,14 +16,14 @@ phpinfo()
|
|||
PHP Version => %s
|
||||
|
||||
System => %s
|
||||
Build Date => %s%a
|
||||
Build Date => %r(.+?)%r
|
||||
Configure Command => %s
|
||||
Server API => Command Line Interface
|
||||
Virtual Directory Support => %s
|
||||
Configuration File (php.ini) Path => %s
|
||||
Loaded Configuration File => %a
|
||||
Scan this dir for additional .ini files => %a
|
||||
Additional .ini files parsed => %a
|
||||
Loaded Configuration File => %r(.+?)%r
|
||||
Scan this dir for additional .ini files => %r(.+?)%r
|
||||
Additional .ini files parsed => %r(.+?)%r
|
||||
PHP API => %d
|
||||
PHP Extension => %d
|
||||
Zend Extension => %d
|
||||
|
@ -31,7 +31,7 @@ Zend Extension Build => API%s
|
|||
PHP Extension Build => API%s
|
||||
PHP Integer Size => %d bits
|
||||
Debug Build => %s
|
||||
Thread Safety => %s%A
|
||||
Thread Safety => %r(.+?)%r
|
||||
Zend Signal Handling => %s
|
||||
Zend Memory Manager => %s
|
||||
Zend Multibyte Support => %s
|
||||
|
@ -43,22 +43,22 @@ Registered PHP Streams => %s
|
|||
Registered Stream Socket Transports => %s
|
||||
Registered Stream Filters => %s
|
||||
|
||||
%a
|
||||
%r(.+?)%r
|
||||
_______________________________________________________________________
|
||||
|
||||
|
||||
Configuration
|
||||
%A
|
||||
%r(.*?)%r
|
||||
Core
|
||||
%A
|
||||
%r(.*?)%r
|
||||
Additional Modules
|
||||
%A
|
||||
%r(.*?)%r
|
||||
Environment
|
||||
%A
|
||||
%r(.*?)%r
|
||||
PHP Variables
|
||||
%A
|
||||
%r(.*?)%r
|
||||
PHP License
|
||||
%A
|
||||
%r(.*?)%r
|
||||
bool(true)
|
||||
--
|
||||
phpinfo()
|
||||
|
@ -67,5 +67,5 @@ bool(true)
|
|||
phpinfo()
|
||||
|
||||
PHP License
|
||||
%a
|
||||
%r(.+?)%r
|
||||
bool(true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue