mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-7.4'
* PHP-7.4: Enclose INI values containing {TMP} in quotes
This commit is contained in:
commit
b31f73b1c8
11 changed files with 11 additions and 11 deletions
|
@ -7,7 +7,7 @@ require_once('skipifemb.inc');
|
|||
require_once('skipifconnectfailure.inc');
|
||||
?>
|
||||
--INI--
|
||||
mysqlnd.debug=d:t:O,{TMP}/mysqlnd.trace
|
||||
mysqlnd.debug="d:t:O,{TMP}/mysqlnd.trace"
|
||||
--FILE--
|
||||
<?php
|
||||
require_once("connect.inc");
|
||||
|
|
|
@ -10,7 +10,7 @@ if (!$IS_MYSQLND) {
|
|||
}
|
||||
?>
|
||||
--INI--
|
||||
mysqlnd.debug=d:t:O,{TMP}/mysqlnd.trace
|
||||
mysqlnd.debug="d:t:O,{TMP}/mysqlnd.trace"
|
||||
mysqlnd.net_read_buffer_size=1
|
||||
mysqlnd.mempool_default_size=1
|
||||
mysqlnd.fetch_data_copy=0
|
||||
|
|
|
@ -3,7 +3,7 @@ Bug #71443 (Segfault using built-in webserver with intl using symfony)
|
|||
--INI--
|
||||
opcache.enable=1
|
||||
opcache.enable_cli=1
|
||||
opcache.file_cache={TMP}
|
||||
opcache.file_cache="{TMP}"
|
||||
opcache.file_cache_only=1
|
||||
--SKIPIF--
|
||||
<?php require_once('skipif.inc'); ?>
|
||||
|
|
|
@ -3,7 +3,7 @@ Bug #76275: Assertion failure in file cache when unserializing empty try_catch_a
|
|||
--INI--
|
||||
opcache.enabled=1
|
||||
opcache.enable_cli=1
|
||||
opcache.file_cache={TMP}
|
||||
opcache.file_cache="{TMP}"
|
||||
--SKIPIF--
|
||||
<?php require_once('skipif.inc'); ?>
|
||||
--FILE--
|
||||
|
|
|
@ -8,7 +8,7 @@ if (substr(PHP_OS, 0, 3) !== 'WIN') die('skip this test is for Windows platforms
|
|||
--INI--
|
||||
opcache.enable_cli=1
|
||||
opcache.optimization_level=-1
|
||||
opcache.file_cache={TMP}
|
||||
opcache.file_cache="{TMP}"
|
||||
opcache.file_cache_only=1
|
||||
--FILE--
|
||||
<?php
|
||||
|
|
|
@ -3,7 +3,7 @@ Bug #69054 (Null dereference in readline_(read|write)_history() without paramete
|
|||
--SKIPIF--
|
||||
<?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip"); ?>
|
||||
--INI--
|
||||
open_basedir={TMP}
|
||||
open_basedir="{TMP}"
|
||||
--FILE--
|
||||
<?php readline_read_history(); ?>
|
||||
==DONE==
|
||||
|
|
|
@ -6,7 +6,7 @@ Bug #32330 (session_destroy, "Failed to initialize storage module", custom sessi
|
|||
session.use_trans_sid=0
|
||||
session.use_cookies=1
|
||||
session.name=sid
|
||||
session.save_path={TMP}
|
||||
session.save_path="{TMP}"
|
||||
session.gc_probability=1
|
||||
session.gc_divisor=1
|
||||
session.save_handler=files
|
||||
|
|
|
@ -3,7 +3,7 @@ Test session_set_save_handler() function: create_sid
|
|||
--INI--
|
||||
session.save_handler=files
|
||||
session.name=PHPSESSID
|
||||
session.save_path={TMP}
|
||||
session.save_path="{TMP}"
|
||||
--SKIPIF--
|
||||
<?php include('skipif.inc'); ?>
|
||||
--FILE--
|
||||
|
|
|
@ -4,7 +4,7 @@ SQLite3::loadExtension with empty extension test
|
|||
Jelle Lampaert
|
||||
#Belgian Testfest 2009
|
||||
--INI--
|
||||
sqlite3.extension_dir={TMP}
|
||||
sqlite3.extension_dir="{TMP}"
|
||||
--SKIPIF--
|
||||
<?php
|
||||
require_once(__DIR__ . '/skipif.inc');
|
||||
|
|
|
@ -9,7 +9,7 @@ if (substr(PHP_OS, 0, 3) != 'WIN') {
|
|||
--CREDITS--
|
||||
Dave Kelsey <d_kelsey@uk.ibm.com>
|
||||
--INI--
|
||||
open_basedir={TMP}
|
||||
open_basedir="{TMP}"
|
||||
--FILE--
|
||||
<?php
|
||||
$a=glob("./*.jpeg");
|
||||
|
|
|
@ -9,7 +9,7 @@ if (substr(PHP_OS, 0, 3) == 'WIN') {
|
|||
--CREDITS--
|
||||
Dave Kelsey <d_kelsey@uk.ibm.com>
|
||||
--INI--
|
||||
open_basedir={TMP}
|
||||
open_basedir="{TMP}"
|
||||
--FILE--
|
||||
<?php
|
||||
$a=glob("./*.jpeg");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue