/PHP-8.4/ext/standard/tests/array/ |
H A D | compact_variation2.phpt | 2 Test compact() function: ensure compact() doesn't pick up variables declared outside of current sco… 5 echo "*** Testing compact() : usage variations - variables outside of current scope ***\n"; 13 var_dump(compact('a','b','c')); 14 var_dump(compact(array('a','b','c'))); 21 *** Testing compact() : usage variations - variables outside of current scope *** 23 Warning: compact(): Undefined variable $a in %s on line %d 31 Warning: compact(): Undefined variable $a in %s on line %d
|
H A D | compact.phpt | 2 compact() 12 $result = compact("event", $location_vars); 15 $result = compact(true); 18 $result = compact($foo, [42]); 23 Warning: compact(): Undefined variable $c\u0327ity in %s on line %d 31 Warning: compact(): Argument #1 must be string or array of strings, true given in %s on line %d 33 Warning: compact(): Argument #2 must be string or array of strings, int given in %s on line %d
|
H A D | compact_variation1.phpt | 2 Test compact() function : usage variations - arrays containing references. 6 * compact variations - arrays with references 8 echo "*** Testing compact() : usage variations - arrays containing references ***\n"; 20 var_dump(compact($arr1)); 26 var_dump(compact($arr2)); 31 var_dump(compact($arr3)); 35 *** Testing compact() : usage variations - arrays containing references ***
|
H A D | compact_basic.phpt | 2 Test compact() function : basic functionality 9 echo "*** Testing compact() : basic functionality ***\n"; 19 var_dump (compact(array("a", "b", "c", "d", "e", "f"))); 21 var_dump (compact("a", "b", "c", "d", "e", "f")); 22 var_dump (compact(array("keyval"=>"a", "b"=>"b"))); 23 var_dump(compact(array("g"))); 28 *** Testing compact() : basic functionality *** 70 Warning: compact(): Undefined variable $g in %s on line %d
|
H A D | compact_no_this.phpt | 2 compact() without object context 9 return (static function(){ return compact('this'); })(); 14 var_dump(compact('this')); 16 var_dump((function(){ return compact('this'); })());
|
H A D | compact_this.phpt | 2 compact() with object context 9 return compact('this'); 17 return compact([['this']]); 25 return (function(){ return compact('this'); })();
|
H A D | bug71220.phpt | 2 Bug #71220 (Null pointer deref (segfault) in compact via ob_start) 5 ob_start("compact"); 13 Cannot call compact() dynamically
|
H A D | compact_order.phpt | 2 compact() and hashmap order 9 var_dump(compact('foo', 'bar')); 10 var_dump(compact('bar', 'foo'));
|
H A D | bug71603.phpt | 2 Bug #71603 (compact() maintains references in php7) 8 $array = compact('foo_reference');
|
H A D | bug69198.phpt | 8 $result = compact('willNeverBeDefined'); 12 Warning: compact(): Undefined variable $willNeverBeDefined in %s on line %d
|
/PHP-8.4/Zend/tests/ |
H A D | gh13142.phpt | 17 compact("a\0b"); 18 compact("\0ab"); 19 compact("ab\0"); 35 Warning: compact(): Undefined variable $a%0b in %s on line %d 37 Warning: compact(): Undefined variable $%0ab in %s on line %d 39 Warning: compact(): Undefined variable $ab%0 in %s on line %d
|
H A D | dynamic_call_006.phpt | 15 $func = 'compact'; 54 Cannot call compact() dynamically
|
/PHP-8.4/ext/json/tests/ |
H A D | pass001.phpt | 50 \"compact\": [1,2,3,4,5,6,7], 133 "compact": [1,2,3,4,5,6,7], 250 ["compact"]=> 388 ["compact"]=> 426 …":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5,6,7],"compact":[1,2,3,4,5,6,7],… 428 …":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5,6,7],"compact":[1,2,3,4,5,6,7],… 530 ["compact"]=> 668 ["compact"]=>
|
H A D | pass001.1.phpt | 60 \"compact\": [1,2,3,4,5,6,7], 148 "compact": [1,2,3,4,5,6,7], 308 ["compact"]=> 489 ["compact"]=> 527 …":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5,6,7],"compact":[1,2,3,4,5,6,7],… 529 …":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5,6,7],"compact":[1,2,3,4,5,6,7],… 674 ["compact"]=> 855 ["compact"]=>
|
H A D | pass001.1_64bit.phpt | 64 \"compact\": [1,2,3,4,5,6,7], 152 "compact": [1,2,3,4,5,6,7], 312 ["compact"]=> 493 ["compact"]=> 531 …":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5,6,7],"compact":[1,2,3,4,5,6,7],… 533 …":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5,6,7],"compact":[1,2,3,4,5,6,7],… 678 ["compact"]=> 859 ["compact"]=>
|
/PHP-8.4/ext/opcache/tests/ |
H A D | func_info.phpt | 16 if (in_array($function, ["extract", "compact", "get_defined_vars"])) {
|
H A D | compact_literals.phpt | 2 Test with compact literals
|
/PHP-8.4/ext/standard/libavifinfo/ |
H A D | README.md | 3 There is no compact, reliable way to determine the size of an AVIF image. A
|
/PHP-8.4/docs/source/introduction/ |
H A D | high-level-overview.rst | 136 Here's what the surprisingly compact opcodes for the AST above might look like:
|
/PHP-8.4/ext/opcache/jit/ir/ |
H A D | ir_ra.c | 1865 bool compact = 0; in ir_coalesce() local 1930 compact = 1; in ir_coalesce() 1962 compact = 1; in ir_coalesce() 2015 compact = 1; in ir_coalesce() 2023 if (compact) { in ir_coalesce()
|
/PHP-8.4/ext/standard/ |
H A D | basic_functions.stub.php | 1652 function compact($var_name, ...$var_names): array {} function
|
H A D | basic_functions_arginfo.h | 2336 ZEND_FUNCTION(compact); 2929 ZEND_FE(compact, arginfo_compact)
|
H A D | array.c | 2736 PHP_FUNCTION(compact) argument
|
/PHP-8.4/build/ |
H A D | libtool.m4 | 2442 …lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand pa…
|
/PHP-8.4/ext/fileinfo/tests/ |
H A D | magic | 344 0 short 0421 0421 Alliant compact executable 6942 0 lelong 0314 386 compact demand paged pure executable 8419 # compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, etc. 10839 # 1~a unique index 8~index has FOR clause 32~compact index format 64~compound index header 10845 >14 ubyte &0x20 \b, compact format 15878 0 lelong&0377777777 041400314 FreeBSD/i386 compact demand paged 31353 0 short 0x2a17 "compact bitmap" format (Poskanzer)
|