/PHP-7.3/tests/basic/ |
H A D | bug31875.phpt | 2 Bug #31875 get_defined_functions() should not list disabled functions 11 $functions = get_defined_functions(); 12 var_dump(in_array($disabled_function, $functions['internal'])); 14 $functions = get_defined_functions(false); 15 var_dump(in_array($disabled_function, $functions['internal'])); 17 $functions = get_defined_functions(true); 18 var_dump(in_array($disabled_function, $functions['internal']));
|
/PHP-7.3/tests/classes/ |
H A D | method_call_variation_001.phpt | 11 $name = 'functions'; 14 $c->functions[0] = 'foo'; 15 $c->functions[1][2][3][4] = 'foo'; 20 $c->functions[0](5, 6); 21 $c->functions[1][2][3][4](7, 8);
|
/PHP-7.3/ext/zlib/ |
H A D | php_zlib.def | 5 ; basic functions 11 ; advanced functions 27 ; utility functions 51 ; checksum functions
|
/PHP-7.3/tests/lang/ |
H A D | bug24926.phpt | 10 public $functions = array(); 17 $this->functions['test'] = $function; 18 print($this->functions['test']()); // werkt al niet meer
|
/PHP-7.3/Zend/ |
H A D | zend_multibyte.c | 87 ZEND_API int zend_multibyte_set_functions(const zend_multibyte_functions *functions) in zend_multibyte_set_functions() argument 89 zend_multibyte_encoding_utf32be = functions->encoding_fetcher("UTF-32BE"); in zend_multibyte_set_functions() 93 zend_multibyte_encoding_utf32le = functions->encoding_fetcher("UTF-32LE"); in zend_multibyte_set_functions() 97 zend_multibyte_encoding_utf16be = functions->encoding_fetcher("UTF-16BE"); in zend_multibyte_set_functions() 101 zend_multibyte_encoding_utf16le = functions->encoding_fetcher("UTF-16LE"); in zend_multibyte_set_functions() 105 zend_multibyte_encoding_utf8 = functions->encoding_fetcher("UTF-8"); in zend_multibyte_set_functions() 111 multibyte_functions = *functions; in zend_multibyte_set_functions()
|
/PHP-7.3/scripts/dev/ |
H A D | find_tested.php | 211 $functions = array_filter($tokens, 'filter_functions'); 212 $functions = array_map( 'map_token_value',$functions); 213 $functions = array_unique($functions); 215 return $functions;
|
/PHP-7.3/ext/pcre/pcre2lib/ |
H A D | pcre2_jit_misc.c | 85 executable_functions *functions = (executable_functions *)executable_jit; in PRIV() 91 if (functions->executable_funcs[i] != NULL) in PRIV() 92 sljit_free_code(functions->executable_funcs[i]); in PRIV() 93 PRIV(jit_free_rodata)(functions->read_only_data_heads[i], allocator_data); in PRIV() 96 SLJIT_FREE(functions, allocator_data); in PRIV()
|
H A D | pcre2_jit_match.c | 104 executable_functions *functions = (executable_functions *)re->executable_jit; in pcre2_jit_match() 121 if (functions == NULL || functions->executable_funcs[index] == NULL) in pcre2_jit_match() 158 max_oveccount = functions->top_bracket; in pcre2_jit_match() 164 convert_executable_func.executable_func = functions->executable_funcs[index]; in pcre2_jit_match()
|
/PHP-7.3/ |
H A D | README.EXT_SKEL | 15 libraries or functions in them, the extension is ready to be compiled in 30 extension functions (User functions) must be named 34 When you need to expose extension functions to other extensions, expose functions
|
/PHP-7.3/ext/standard/tests/general_functions/ |
H A D | bug70249.phpt | 9 …// make regular flush before other shutdown functions, which allows session data collection and so… 11 // make sure log entries written by shutdown functions are also flushed 12 // ensure "flush()" is called last when there are multiple shutdown functions
|
H A D | is_callable_basic1.phpt | 2 Test is_callable() function : usage variations - defined functions 10 /* Prototype: void check_iscallable( $functions ); 14 function check_iscallable( $functions ) { 16 foreach($functions as $func) { 29 echo "\n*** Testing is_callable() on defined functions ***\n"; 65 *** Testing is_callable() on defined functions ***
|
H A D | gettype_settype_error.phpt | 2 Test gettype() & settype() functions : error conditions 12 /* Test different error conditions of settype() and gettype() functions */ 14 echo "**** Testing gettype() and settype() functions ****\n"; 36 **** Testing gettype() and settype() functions ****
|
/PHP-7.3/ext/pgsql/tests/ |
H A D | 19pg_ping.phpt | 2 PostgreSQL pg_ping() functions 7 // optional functions
|
H A D | 20pg_get_pid.phpt | 2 PostgreSQL pg_get_pid() functions 7 // optional functions
|
H A D | 07optional.phpt | 2 PostgreSQL optional functions 7 // optional functions
|
H A D | 21pg_get_notify.phpt | 2 PostgreSQL pg_get_notify() functions 7 // optional functions
|
/PHP-7.3/ext/sodium/ |
H A D | libsodium.php | 8 $functions = get_extension_funcs($module); variable 10 foreach($functions as $func) {
|
/PHP-7.3/ext/standard/tests/serialize/ |
H A D | serialization_resources_001.phpt | 2 Test serialize() & unserialize() functions: resources 8 * Alias to functions: 13 * Alias to functions:
|
/PHP-7.3/ext/ctype/ |
H A D | config.m4 | 3 PHP_ARG_ENABLE(ctype, whether to enable ctype functions, 4 [ --disable-ctype Disable ctype functions], yes)
|
/PHP-7.3/tests/output/ |
H A D | ob_start_basic_002.phpt | 25 // Use each of the above functions as an output buffering callback: 26 $functions = get_defined_functions(); 27 $callbacks = $functions['user'];
|
/PHP-7.3/ext/standard/tests/array/ |
H A D | array_filter_variation9.phpt | 2 Test array_filter() function : usage variations - built-in functions as 'callback' argument 11 * Passing built-in functions and different language constructs as 'callback' argument 14 echo "*** Testing array_filter() : usage variations - built-in functions as 'callback' argument ***… 33 *** Testing array_filter() : usage variations - built-in functions as 'callback' argument ***
|
H A D | array_uintersect_assoc_variation5.phpt | 2 Test array_uintersect_assoc() function : usage variation - differing comparison functions 8 * Alias to functions: 11 echo "*** Testing array_uintersect_assoc() : usage variation - differing comparison functions***\n"; 42 *** Testing array_uintersect_assoc() : usage variation - differing comparison functions***
|
H A D | array_uintersect_variation5.phpt | 2 Test array_uintersect() function : usage variation - differing comparison functions 8 * Alias to functions: 11 echo "*** Testing array_uintersect() : usage variation - differing comparison functions***\n"; 42 *** Testing array_uintersect() : usage variation - differing comparison functions***
|
H A D | array_udiff_assoc_variation5.phpt | 2 Test array_udiff_assoc() function : usage variation - incorrect comparison functions 8 * Alias to functions: 12 echo "*** Testing array_udiff_assoc() : usage variation - differing comparison functions***\n"; 42 *** Testing array_udiff_assoc() : usage variation - differing comparison functions***
|
H A D | array_udiff_uassoc_variation6.phpt | 6 …ional checks whether the keys are equal. Keys and elements are compared by user supplied functions. 8 * Alias to functions: 11 echo "*** Testing array_udiff_uassoc() : usage variation - differing comparison functions***\n"; 41 *** Testing array_udiff_uassoc() : usage variation - differing comparison functions***
|