Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 1186) sorted by path

12345678910>>...48

/PHP-5.6/
H A D.gdbinit438 set $tmp = 0
441 set $tmp = $tmp + 1
465 set $tmp = $depth
466 while $tmp != 0
468 set $tmp = $tmp - 1
479 set $tmp = $depth
480 while $tmp != 1
482 set $tmp = $tmp - 1
516 set $tmp = 0
520 if $str[$tmp] > 32 && $str[$tmp] < 127
[all …]
H A D.gitignore96 tmp-php.ini
193 ext/oci8/tests/*.tmp
197 ext/pdo/tests/*.tmp
201 ext/pdo_mysql/tests/*.tmp
204 ext/pdo_odbc/tests/*.tmp
208 ext/pdo_pgsql/tests/*.tmp
212 ext/pdo_sqlite/tests/*.tmp
216 ext/pspell/tests/*.tmp
225 ext/sqlite3/tests/*.tmp
H A DINSTALL544 "socket" => "/tmp/php.socket",
589 PHP_PID=/tmp/php.pid
594 FCGI_BIND_ADDRESS=/tmp/php.sock
921 will therefore need to create a /var/www/tmp directory for PHP
H A DMakefile.global92 $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \
94 echo > $(top_builddir)/tmp-php.ini; \
99 … -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_SCANNED_PATH"/*.ini >> $(top_builddir)/tmp-php.ini; \
104 …XECUTABLE) -n -c $(top_builddir)/tmp-php.ini $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -n -…
106 rm $(top_builddir)/tmp-php.ini; \
H A DNEWS3833 with non std tmp dir). (Pierre)
7271 - Removed special treatment of "/tmp" in sessions for open_basedir.
H A DREADME.SELF-CONTAINED-EXTENSIONS37 $ mkdir /tmp/newext
38 $ cd /tmp/newext
H A DREADME.TESTING123 TMPDIR=/var/tmp
H A DREADME.input_filter154 zval **tmp;
177 if(zend_hash_find(HASH_OF(array_ptr), var, var_len+5, (void **)&tmp) == SUCCESS) {
178 *return_value = **tmp;
/PHP-5.6/Zend/tests/
H A Dbug30998.phpt14 $f = fopen("/tmp/blah", "r");
18 fopen(/tmp/blah): failed to open stream: %s (2) in %s:%d
20 Warning: fopen(/tmp/blah): failed to open stream: %s in %s on line %d
H A Dbug55509.phpt20 $tmp = explode(":", $line);
21 $index = strtolower($tmp[0]);
22 $value = (int)ltrim($tmp[1], " ")*1024;
37 $tmp = explode(":", $line);
38 $index = strtolower($tmp[0]);
39 $value = trim($tmp[1], " ");
H A Dbug63741.phpt5 file_put_contents(dirname(__FILE__)."/bug63741.tmp.php",
44 include dirname(__FILE__)."/bug63741.tmp.php";
47 <?php unlink(dirname(__FILE__)."/bug63741.tmp.php"); ?>
H A Dbug66660.phpt7 file_put_contents(__DIR__."/bug66660.tmp.php", "<?php __CLASS__ ?>");
8 echo php_strip_whitespace(__DIR__."/bug66660.tmp.php");
11 <?php unlink(__DIR__."/bug66660.tmp.php"); ?>
H A Dcast_to_array.phpt37 $tmp = (array)$var;
38 var_dump($tmp);
H A Dcast_to_bool.phpt33 $tmp = (bool)$var;
34 var_dump($tmp);
H A Dcast_to_double.phpt35 $tmp = (double)$var;
36 var_dump($tmp);
H A Dcast_to_int.phpt33 $tmp = (int)$var;
34 var_dump($tmp);
H A Dcast_to_object.phpt33 $tmp = (object)$var;
34 var_dump($tmp);
H A Dcast_to_string.phpt33 $tmp = (string)$var;
34 var_dump($tmp);
H A Dobject_handlers.phpt64 $c = "tmp";
/PHP-5.6/Zend/
H A Dzend.c136 zval **tmp; in print_hash() local
149 while (zend_hash_get_current_data_ex(ht, (void **) &tmp, &iterator) == SUCCESS) { in print_hash()
184 zend_print_zval_r_ex(write_func, *tmp, indent+PRINT_ZVAL_INDENT TSRMLS_CC); in print_hash()
198 zval **tmp; in print_flat_hash() local
206 while (zend_hash_get_current_data_ex(ht, (void **) &tmp, &iterator) == SUCCESS) { in print_flat_hash()
220 zend_print_flat_zval_r(*tmp TSRMLS_CC); in print_flat_hash()
H A Dzend_API.c1226 zval *tmp; in add_assoc_long_ex() local
1237 zval *tmp; in add_assoc_null_ex() local
1248 zval *tmp; in add_assoc_bool_ex() local
1259 zval *tmp; in add_assoc_resource_ex() local
1270 zval *tmp; in add_assoc_double_ex() local
1281 zval *tmp; in add_assoc_string_ex() local
1297 zval *tmp; in add_assoc_stringl_ex() local
1318 zval *tmp; in add_index_long() local
1329 zval *tmp; in add_index_null() local
1340 zval *tmp; in add_index_bool() local
[all …]
H A Dzend_alloc.c1168 char *tmp; in zend_mm_startup() local
1199 tmp = getenv("ZEND_MM_SEG_SIZE"); in zend_mm_startup()
1200 if (tmp) { in zend_mm_startup()
1201 seg_size = zend_atoi(tmp, 0); in zend_mm_startup()
1223 tmp = getenv("ZEND_MM_COMPACT"); in zend_mm_startup()
1224 if (tmp) { in zend_mm_startup()
1225 heap->compact_size = zend_atoi(tmp, 0); in zend_mm_startup()
2732 char *tmp = getenv("USE_ZEND_ALLOC"); in alloc_globals_ctor() local
2734 if (tmp && !zend_atoi(tmp, 0)) { in alloc_globals_ctor()
H A Dzend_alloc.h97 void *tmp = malloc(len); in __zend_malloc() local
98 if (tmp) { in __zend_malloc()
99 return tmp; in __zend_malloc()
107 void *tmp = _safe_malloc(nmemb, len, 0); in __zend_calloc() local
108 memset(tmp, 0, nmemb * len); in __zend_calloc()
109 return tmp; in __zend_calloc()
H A Dzend_ast.c338 zval *tmp; in zend_ast_evaluate() local
339 zend_fetch_dimension_by_zval(&tmp, &op1, &op2 TSRMLS_CC); in zend_ast_evaluate()
340 ZVAL_ZVAL(result, tmp, 1, 1); in zend_ast_evaluate()
H A Dzend_builtin_functions.c575 zval *array, *entry, **entry_ptr, *tmp; in ZEND_FUNCTION() local
599 ALLOC_ZVAL(tmp); in ZEND_FUNCTION()
600 *tmp = *entry; in ZEND_FUNCTION()
601 zval_copy_ctor(tmp); in ZEND_FUNCTION()
602 Z_UNSET_ISREF_P(tmp); in ZEND_FUNCTION()
603 Z_SET_REFCOUNT_P(tmp, 0); in ZEND_FUNCTION()
604 entry=tmp; in ZEND_FUNCTION()
1025 char *tmp = estrndup(prop_name, prop_len); in ZEND_FUNCTION() local
1027 efree(tmp); in ZEND_FUNCTION()
2055 zval **tmp; in debug_print_backtrace_args() local
[all …]

Completed in 99 milliseconds

12345678910>>...48