Home
last modified time | relevance | path

Searched refs:fscanf (Results 1 – 25 of 69) sorted by last modified time

123

/php-src/ext/standard/
H A Dbasic_functions.stub.php2809 function fscanf($stream, string $format, mixed &...$vars): array|int|false|null {}
H A Dbasic_functions_arginfo.h2650 ZEND_FUNCTION(fscanf);
3286 ZEND_FE(fscanf, arginfo_fscanf)
H A Dfile.c957 PHP_FUNCTION(fscanf) in PHP_FUNCTION() argument
/php-src/ext/opcache/
H A DZendAccelerator.c3040 ret = fscanf(f, "%lx-", &start); in accel_move_code_to_huge_pages()
/php-src/ext/spl/
H A Dspl_directory.c2583 PHP_METHOD(SplFileObject, fscanf) in PHP_METHOD() argument
H A Dspl_directory_arginfo.h349 ZEND_METHOD(SplFileObject, fscanf);
461 ZEND_ME(SplFileObject, fscanf, arginfo_class_SplFileObject_fscanf, ZEND_ACC_PUBLIC)
H A Dspl_directory.stub.php286 public function fscanf(string $format, mixed &...$vars): array|int|null {} function in SplFileObject
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c6763 if(fscanf(f,"%lf",&d)==1){
/php-src/
H A DREADME.REDIST.BINS258 fscanf. Original code is from TCL8.3.0 and bears the following copyright:
/php-src/ext/standard/tests/file/
H A Dfscanf_variation18.phpt2 Test fscanf() function: usage variations - string formats with integer values
6 /* Test fscanf() to scan integer values using different string format types */
10 echo "*** Test fscanf(): different string format types with integer values ***\n";
72 var_dump(fscanf($file_handle,$string_format));
89 *** Test fscanf(): different string format types with integer values ***
H A Dfscanf_variation19.phpt2 Test fscanf() function: usage variations - string formats with boolean
6 /* Test fscanf() to scan boolean data using different string format types */
10 echo "*** Test fscanf(): different string format types with boolean data ***\n";
56 var_dump(fscanf($file_handle,$string_format));
73 *** Test fscanf(): different string format types with boolean data ***
H A Dfscanf_variation2.phpt2 Test fscanf() function: usage variations - integer formats with integer values
6 /* Test fscanf() to scan different integer values using different integer format types */
10 echo "*** Test fscanf(): different integer format types with different integer values ***\n";
66 var_dump(fscanf($file_handle,$int_format));
83 *** Test fscanf(): different integer format types with different integer values ***
H A Dfscanf_variation20.phpt2 Test fscanf() function: usage variations - char formats with integer values
6 /* Test fscanf() to scan different integer values using different char format types */
10 echo "*** Test fscanf(): different char format types with different integer values ***\n";
70 var_dump(fscanf($file_handle,$char_format));
87 *** Test fscanf(): different char format types with different integer values ***
H A Dfscanf_variation21.phpt2 Test fscanf() function: usage variations - char formats with float values
6 /* Test fscanf() to scan float values using different char format types */
10 echo "*** Test fscanf(): different char format types with float values ***\n";
68 var_dump(fscanf($file_handle,$char_format));
85 *** Test fscanf(): different char format types with float values ***
H A Dfscanf_variation22.phpt2 Test fscanf() function: usage variations - char formats with resource
6 /* Test fscanf() to scan resource type using different char format types */
10 echo "*** Test fscanf(): different char format types with resource ***\n";
59 var_dump(fscanf($file_handle,$char_format));
80 *** Test fscanf(): different char format types with resource ***
H A Dfscanf_variation23.phpt2 Test fscanf() function: usage variations - char formats with arrays
6 /* Test fscanf() to scan arrays using different char format types */
10 echo "*** Test fscanf(): different char format types with arrays ***\n";
64 var_dump(fscanf($file_handle,$char_format));
81 *** Test fscanf(): different char format types with arrays ***
H A Dfscanf_variation24.phpt2 Test fscanf() function: usage variations - char formats with strings
6 /* Test fscanf() to scan strings using different char format types */
10 echo "*** Test fscanf(): different char format types with strings ***\n";
70 var_dump(fscanf($file_handle,$char_format));
87 *** Test fscanf(): different char format types with strings ***
H A Dfscanf_variation25.phpt2 Test fscanf() function: usage variations - char formats with boolean
6 /* Test fscanf() to scan boolean data using different char format types */
10 echo "*** Test fscanf(): different char format types with boolean data ***\n";
56 var_dump(fscanf($file_handle,$char_format));
73 *** Test fscanf(): different char format types with boolean data ***
H A Dfscanf_variation26.phpt2 Test fscanf() function: usage variations - char formats with chars
6 /* Test fscanf() to scan different chars using different char format types */
10 echo "*** Test fscanf(): different char format types with chars ***\n";
51 var_dump(fscanf($file_handle,$char_format));
68 *** Test fscanf(): different char format types with chars ***
H A Dfscanf_variation27.phpt2 Test fscanf() function: usage variations - octal formats with integer values
6 /* Test fscanf() to scan different integer values using different octal format types */
10 echo "*** Test fscanf(): different octal format types with different integer values ***\n";
71 var_dump(fscanf($file_handle,$octal_format));
88 *** Test fscanf(): different octal format types with different integer values ***
H A Dfscanf_variation28.phpt2 Test fscanf() function: usage variations - octal formats with float values
6 /* Test fscanf() to scan float values using different octal format types */
10 echo "*** Test fscanf(): different octal format types with float values ***\n";
69 var_dump(fscanf($file_handle,$octal_format));
86 *** Test fscanf(): different octal format types with float values ***
H A Dfscanf_variation29.phpt2 Test fscanf() function: usage variations - octal formats with resource
6 /* Test fscanf() to scan resource type using different octal format types */
10 echo "*** Test fscanf(): different octal format types with resource ***\n";
60 var_dump(fscanf($file_handle,$octal_format));
81 *** Test fscanf(): different octal format types with resource ***
H A Dfscanf_variation3.phpt2 Test fscanf() function: usage variations - integer formats with float values
12 /* Test fscanf() to scan float values using different integer format types */
16 echo "*** Test fscanf(): different integer format types with float values ***\n";
70 var_dump( fscanf($file_handle,$int_format) );
87 *** Test fscanf(): different integer format types with float values ***
H A Dfscanf_variation30.phpt2 Test fscanf() function: usage variations - octal formats with arrays
6 /* Test fscanf() to scan arrays using different octal format types */
10 echo "*** Test fscanf(): different octal format types with arrays ***\n";
65 var_dump(fscanf($file_handle,$octal_format));
82 *** Test fscanf(): different octal format types with arrays ***
H A Dfscanf_variation31.phpt2 Test fscanf() function: usage variations - octal formats with strings
6 /* Test fscanf() to scan strings using different octal format types */
10 echo "*** Test fscanf(): different octal format types with strings ***\n";
66 var_dump(fscanf($file_handle,$octal_format));
83 *** Test fscanf(): different octal format types with strings ***

Completed in 319 milliseconds

123