/PHP-5.6/ext/standard/tests/streams/ |
H A D | bug60602.phpt | 2 Bug #60602 proc_open() modifies environment if it contains arrays 12 $environment = array('test' => array(1, 2, 3)); 15 $p = proc_open($cmd, $descs, $pipes, '.', $environment); 44 var_dump(is_array($environment['test']));
|
/PHP-5.6/ext/pgsql/tests/ |
H A D | config.inc | 4 // values can be set to meet your environment with the 5 // environment var PGSQL_TEST_CONNSTR
|
H A D | 00version.phpt | 15 // Get environment vars for debugging
|
/PHP-5.6/sapi/litespeed/ |
H A D | README | 17 server's virtual host configuration. In shared hosting environment, 20 usually, FastCGI PHP is not an option in shared hosting environment 51 installation. lsphp can be used in clustered environment with one 53 running on multiple backend servers. In such environment, lsphp can be 92 "Instances" should be set to "1". Add "LSAPI_CHILDREN" environment 94 environment variable described below can be added. 108 There are a few environment variables that can be tweaked to control the 118 should be set to "1", while "LSAPI_CHILDREN" environment variable should 128 most server environment. 136 preferred in a shared hosting environment. When set to 1, the internal [all …]
|
/PHP-5.6/sapi/isapi/stresstest/ |
H A D | stresstest.cpp | 190 BOOL ReadGlobalEnvironment(const char *environment) in ReadGlobalEnvironment() argument 192 if (environment) { in ReadGlobalEnvironment() 193 FILE *fp = fopen(environment, "r"); in ReadGlobalEnvironment() 277 void DoFileList(const char *filelist, const char *environment) in DoFileList() argument 286 ReadGlobalEnvironment(environment); in DoFileList() 433 void DoTestFiles(const char *filelist, const char *environment) in DoTestFiles() argument 442 ReadGlobalEnvironment(environment); in DoTestFiles() 484 char *filelist=NULL, *environment=NULL, *module=NULL; in main() local 497 environment = strdup(ap_optarg); in main() 574 DoTestFiles(TestPath, environment); in main() [all …]
|
H A D | notes.txt | 15 regular environment, create a file that contains them, one setting per line: 19 This can be used to simulate ISAPI environment variables if need be.
|
/PHP-5.6/ext/date/tests/ |
H A D | bug43527.phpt | 2 Bug #43527 (DateTime created from a timestamp reports environment timezone)
|
H A D | bug26320.phpt | 7 die("skip unable to change TZ environment variable\n");
|
H A D | bug26317.phpt | 7 die("skip unable to change TZ environment variable\n");
|
H A D | bug13142.phpt | 11 die("skip unable to change TZ environment variable\n");
|
H A D | 002.phpt | 6 die("skip unable to change TZ environment variable\n");
|
/PHP-5.6/sapi/phpdbg/tests/commands/ |
H A D | 0104_clean.test | 3 # purpose: test cleaning environment
|
/PHP-5.6/ |
H A D | README.TESTING2 | 9 testing PHP under it's primary environment, HTTP, and can run the 20 depending on the environment. 23 Will emulate a CGI environment when testing with the cgi sapi executable. 81 This section get's eval()'d to help build an environment for the 82 execution of the test. This can be used to change environment 101 $this->env all environment variables that will get passed to the test
|
H A D | README.TESTING | 36 you must set the TEST_PHP_EXECUTABLE environment variable to explicitly 67 When an argument is given or TESTS environment variable is set, the 92 factors applying to the tester's environment, or there is a bug in PHP. 100 environment variable TEST_PHP_LOG_FORMAT. For each file you want to be 104 NOTE: You can set environment variable TEST_PHP_DETAILED to enable 109 assurance, setting the environment variable NO_INTERACTION to 1, will not 113 of independent tests. Set the environment variable REPORT_EXIT_STATUS to 1, 131 # Set test environment
|
H A D | php5.spec.in | 36 # to override, use the OVERRIDE_OPTIONS environment variable. To add 37 # extra options, use the OPTIONS environment variable.
|
/PHP-5.6/Zend/ |
H A D | README.ZEND_MM | 32 this there is the ZEND_DONT_UNLOAD_MODULES environment variable. If set, then 39 The Zend MM can be tweaked using ZEND_MM_MEM_TYPE and ZEND_MM_SEG_SIZE environment
|
/PHP-5.6/ext/standard/tests/strings/ |
H A D | setlocale_variation4.phpt | 23 /*If locale is NULL, the locale names will be set from the values of environment variables with the… 44 …in the system, Expected : the locale names will be set from the values of environment variables\n"; 155 …ale in the system, Expected : the locale names will be set from the values of environment variables
|
H A D | setlocale_variation5.phpt | 23 /* If locale is empty string "", the locale names will be set from the values of environment variab… 48 …in the system, Expected : the locale names will be set from the values of environment variables\n"; 159 …ale in the system, Expected : the locale names will be set from the values of environment variables
|
/PHP-5.6/ext/bcmath/libbcmath/ |
H A D | aclocal.m4 | 47 # Check to make sure that the build environment is sane. 51 [AC_MSG_CHECKING([whether build environment is sane]) 71 # broken ls alias from the environment. This has actually 74 alias in your environment])
|
/PHP-5.6/scripts/ |
H A D | phpize.in | 128 \$PHP_AUTOCONF environment variable. Then, rerun this script. 136 \$PHP_AUTOHEADER environment variable. Then, rerun this script.
|
/PHP-5.6/ext/snmp/tests/ |
H A D | README | 10 You need to give credentials with environment vars if default ones are not 22 Running run-tests.php directly will clear your environment and therefore
|
/PHP-5.6/ext/pdo_mysql/tests/ |
H A D | README | 1 You must set the following environment variables to run the tests:
|
/PHP-5.6/ext/pdo_oci/tests/ |
H A D | pecl_bug_11345.phpt | 13 // when the National Language Support (NLS) environment can't be
|
/PHP-5.6/ext/standard/ |
H A D | proc_open.c | 76 static php_process_env_t _php_array_to_envp(zval *environment, int is_persistent TSRMLS_DC) in _php_array_to_envp() argument 92 if (!environment) { in _php_array_to_envp() 96 cnt = zend_hash_num_elements(Z_ARRVAL_P(environment)); in _php_array_to_envp() 106 target_hash = HASH_OF(environment); in _php_array_to_envp() 458 zval *environment = NULL; in PHP_FUNCTION() local 497 &command_len, &descriptorspec, &pipes, &cwd, &cwd_len, &environment, in PHP_FUNCTION() 524 if (environment) { in PHP_FUNCTION() 525 env = _php_array_to_envp(environment, is_persistent TSRMLS_CC); in PHP_FUNCTION()
|
/PHP-5.6/sapi/tux/ |
H A D | README | 22 Note that requests are served in a chroot'ed environment. 24 environment, so that e.g. /usr/local/lib/php.ini is treated
|