Home
last modified time | relevance | path

Searched refs:temp (Results 76 – 100 of 241) sorted by path

12345678910

/PHP-7.4/ext/spl/tests/
H A Dbug80933.phpt10 $temp = new SplTempFileObject();
11 $temp->fwrite($line);
13 $temp->rewind();
14 $read = $temp->fgets();
17 $temp->rewind();
18 $temp->setFlags(SplFileObject::DROP_NEW_LINE);
19 $read = $temp->fgets();
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c1685 zend_string *temp = zend_string_alloc(ZSTR_LEN(param->name) + 1, 0); in register_bound_parameter_to_sqlite() local
1686 ZSTR_VAL(temp)[0] = ':'; in register_bound_parameter_to_sqlite() local
1687 memmove(ZSTR_VAL(temp) + 1, ZSTR_VAL(param->name), ZSTR_LEN(param->name) + 1); in register_bound_parameter_to_sqlite()
1688 param->name = temp; in register_bound_parameter_to_sqlite()
/PHP-7.4/ext/standard/
H A Darray.c2962 Bucket *p, temp; local
2990 temp = hash->arData[n_left];
2992 hash->arData[rnd_idx] = temp;
3015 temp = hash->arData[n_left];
3017 hash->arData[rnd_idx] = temp;
H A Dfile.c428 while (temp && *temp) { in PHP_FUNCTION()
430 *temp = '_'; in PHP_FUNCTION()
432 temp++; in PHP_FUNCTION()
462 while (temp && *temp) { in PHP_FUNCTION()
464 *temp = '_'; in PHP_FUNCTION()
466 temp++; in PHP_FUNCTION()
2116 tptr = temp; in php_fgetcsv()
2190 temp = new_temp; in php_fgetcsv()
2324 comp_end = (char *)php_fgetcsv_lookup_trailing_spaces(temp, tptr - temp, delimiter); in php_fgetcsv()
2332 add_next_index_stringl(return_value, temp, comp_end - temp); in php_fgetcsv()
[all …]
H A Dimage.c1467 char temp[MAX_LENGTH_OF_LONG * 2 + sizeof("width=\"\" height=\"\"")]; in php_getimagesize_from_stream() local
1472 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()
1473 add_index_string(return_value, 3, temp); in php_getimagesize_from_stream()
H A Dmath.c1103 zval *number, temp; in PHP_FUNCTION() local
1126 if(_php_math_basetozval(number, (int)frombase, &temp) == FAILURE) { in PHP_FUNCTION()
1129 result = _php_math_zvaltobase(&temp, (int)tobase); in PHP_FUNCTION()
H A Dstring.c6063 char temp; local
6077 temp = str[n_left];
6079 str[rnd_idx] = temp;
/PHP-7.4/ext/standard/tests/array/
H A D001.phpt26 $temp[$x] = $array;
28 return $temp;
H A Darray_change_key_case_variation4.phpt19 $temp = $input;
20 var_dump(array_change_key_case($temp, $i));
/PHP-7.4/ext/standard/tests/dir/
H A Ddir_basic-win32-mb.phpt50 // delete temp files
H A Ddir_basic.phpt44 // delete temp files
/PHP-7.4/ext/standard/tests/file/
H A D007_basic.phpt59 // remove the temp file
H A Dbasename-win32.phpt58 array("C:\\temp\\bar"),
59 array("C:\\temp\\bar", ""),
60 array("C:\\temp\\bar", NULL),
61 array("C:\\temp\\bar", ' '),
62 array("C:\\temp\\bar.tar", ".tar"),
63 array("C:\\temp\\bar.tar", "~"),
64 array("C:\\temp\\bar.tar\\", "~"),
65 array("C:\\temp\\bar.tar\\", ""),
66 array("C:\\temp\\bar.tar", NULL),
67 array("C:\\temp\\bar.tar", ''),
[all …]
H A Dbug39551.phpt6 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), '');
11 $bucket = stream_bucket_new(fopen('php://temp', 'w+'), '');
18 stream_filter_append($s = fopen('php://temp', 'r+'), 'bucketfault');
H A Dbug52820.phpt29 echo "temp stream (close after):\n";
30 fclose(do_stuff("php://temp"));
36 zend_leak_variable(do_stuff("php://temp"));
43 temp stream (close after):
53 temp stream (leak):
H A Dbug69628.phpt14 // temp dirname used here
17 // temp dir created
20 // temp files created
H A Dfile_error.phpt21 var_dump( file("temp.tmp") ); // non existing filename
44 Warning: file(temp.tmp): failed to open stream: No such file or directory in %s on line %d
H A Dfwrite_variation1-win32-mb.phpt41 // create the temp file with content of type $file_content_type
H A Dfwrite_variation1.phpt34 // create the temp file with content of type $file_content_type
H A Dfwrite_variation2-win32.phpt41 // create temp file and fill the data of type $file_content_type
H A Dfwrite_variation2.phpt41 // create temp file and fill the data of type $file_content_type
H A Dfwrite_variation3-win32.phpt41 // create temp file and fill it content of type $file_content_type
H A Dfwrite_variation3.phpt41 // create temp file and fill it content of type $file_content_type
H A Dglob_basic.phpt13 // temp dirname used here
16 // temp dir created
19 // temp files created
H A Dglob_variation-win32-mb.phpt19 // temp dir created
24 // temp files created
61 // delete temp files and dir
68 // temp dir created to check for pattern matching the sub dir created in it

Completed in 86 milliseconds

12345678910