/php-src/ext/standard/tests/array/ |
H A D | array_unique_variation6.phpt | 2 Test array_unique() function : usage variations - array with reference variables 7 * array having reference variables as values. 10 echo "*** Testing array_unique() : array with reference variables for \$input argument ***\n"; 17 // input array containing elements as reference variables 32 *** Testing array_unique() : array with reference variables for $input argument ***
|
H A D | array_merge_recursive_variation7.phpt | 2 Test array_merge_recursive() function : usage variations - array with reference variables 7 * array having reference variables. 10 echo "*** Testing array_merge_recursive() : array with reference variables for \$arr1 argument ***\… 17 // input array containing elements as reference variables 39 *** Testing array_merge_recursive() : array with reference variables for $arr1 argument ***
|
H A D | array_slice_variation9.phpt | 2 Test array_slice() function : usage variations - referenced variables 7 * 1. Passed an array of referenced variables 17 echo "\n-- Array of referenced variables (\$preserve_keys = default) --\n"; 30 -- Array of referenced variables ($preserve_keys = default) --
|
H A D | array_values_variation6.phpt | 2 Test array_values() function : usage variations - Referenced variables 7 * 1. Passed an array made up of referenced variables 17 echo "\n-- \$input is an array made up of referenced variables: --\n"; 30 -- $input is an array made up of referenced variables: --
|
H A D | array_unique_variation9.phpt | 75 66 => 'variables', 76 67 => 'variables', 77 68 => 'variables', 108 [66] => variables
|
H A D | array_sum_variation5.phpt | 2 Test array_sum() function : usage variations - array with reference variables as elements 6 * Testing array_sum() with 'input' having reference variables as elements 16 // input array containing elements as reference variables
|
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"; 21 *** Testing compact() : usage variations - variables outside of current scope ***
|
H A D | current_variation3.phpt | 2 Test current() function : usage variations - referenced variables 6 * Test how the internal pointer is affected when two variables are referenced to each other 17 // Test that when two variables are referenced to one another
|
H A D | end_variation3.phpt | 2 Test end() function : usage variations - Referenced variables 6 * Test how the internal pointer is affected when two variables are referenced to each other 17 // Test that when two variables are referenced to one another
|
H A D | array_merge_variation9.phpt | 2 Test array_merge() function : usage variations - referenced variables 6 * 1. Passed an array made up of referenced variables 19 echo "\n-- Merge an array made up of referenced variables to an assoc. array --\n"; 34 -- Merge an array made up of referenced variables to an assoc. array --
|
H A D | array_key_exists_variation4.phpt | 2 Test array_key_exists() function : usage variations - referenced variables 6 * Pass referenced variables as arguments to array_key_exists() to test behaviour
|
/php-src/ext/standard/tests/general_functions/ |
H A D | get_defined_vars_basic.phpt | 15 echo "\n-- ..define some local variables --\n"; 33 echo "\n-- ...define some variables --\n"; 41 echo "\n-- ...define some more variables --\n"; 49 echo "\n-- Get variables at global scope --\n"; 53 echo "TEST FAILED - Global variables missing at global scope\n"; 64 -- Get variables at global scope -- 68 -- ..define some local variables -- 96 -- ...define some variables -- 118 -- ...define some more variables --
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_class_mysqli_driver_interface.phpt | 34 printf("\nClass variables:\n"); 35 $variables = array_keys(get_class_vars(get_class($driver))); 36 sort($variables); 37 foreach ($variables as $var) { 41 printf("\nObject variables:\n"); 42 $variables = array_keys(get_object_vars($driver)); 43 foreach ($variables as $var) { 84 Class variables: 90 Object variables:
|
H A D | bug52082.phpt | 17 var_dump($link->query("show variables like 'character_set_client'")->fetch_row()); 18 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row()); 20 var_dump($link->query("show variables like 'character_set_client'")->fetch_row()); 21 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row());
|
H A D | mysqli_class_mysqli_interface.phpt | 92 printf("\nClass variables:\n"); 118 foreach ($variables as $var => $v) { 121 unset($variables[$var]); 129 if (!empty($variables)) { 131 var_dump($variables); 135 printf("\nObject variables:\n"); 140 unset($variables[$var]); 148 if (!empty($variables)) { 150 var_dump($variables); 268 Class variables: [all …]
|
H A D | mysqli_class_mysqli_stmt_interface.phpt | 68 printf("\nClass variables:\n"); 69 $variables = array_keys(get_class_vars(get_class($stmt))); 70 sort($variables); 71 foreach ($variables as $var) 74 printf("\nObject variables:\n"); 75 $variables = array_keys(get_object_vars($stmt)); 76 foreach ($variables as $var) 141 Class variables: 153 Object variables:
|
H A D | mysqli_class_mysqli_result_interface.phpt | 69 printf("\nClass variables:\n"); 70 $variables = array_keys(get_class_vars(get_class($mysqli_result))); 71 sort($variables); 72 foreach ($variables as $var) 75 printf("\nObject variables:\n"); 76 $variables = array_keys(get_object_vars($mysqli_result)); 77 foreach ($variables as $var) 148 Class variables: 155 Object variables:
|
/php-src/ext/standard/tests/array/sort/ |
H A D | usort_variation9.phpt | 2 Test usort() function : usage variations - referenced variables 6 * Pass an array of referenced variables as $array_arg to test behaviour 24 // different variables which are used as elements of $array_arg 30 // array_args an array containing elements with reference variables
|
H A D | uasort_variation10.phpt | 2 Test uasort() function : usage variations - sort array with reference variables 6 * Testing uasort() with 'array_arg' containing different reference variables 25 // different variables which are used as elements of 'array_arg' 31 // array_args an array containing elements with reference variables
|
/php-src/tests/lang/ |
H A D | passByReference_012.phpt | 7 // "Only variables should be passed by reference in %s on line %d" 17 Notice: Only variables should be passed by reference in %s on line %d 20 Notice: Only variables should be passed by reference in %s on line %d
|
/php-src/tests/func/ |
H A D | 002.phpt | 2 Static variables in functions 16 echo "Local variables became global :(\n";
|
/php-src/ext/standard/tests/array/array_walk/ |
H A D | array_walk_recursive_variation5.phpt | 2 …rray_walk_recursive() function : usage variations - 'input' argument containing reference variables 6 * Testing array_walk_recursive() with an array having reference variables 16 // 'input' array containing references to above variables
|
H A D | array_walk_variation5.phpt | 2 Test array_walk() function : usage variations - 'input' argument containing reference variables 6 * Testing array_walk() with an array having reference variables 16 // 'input' array containing references to above variables
|
/php-src/ext/mbstring/tests/ |
H A D | bug63447_001.phpt | 2 Bug #63447 (max_input_vars doesn't filter variables when mbstring.encoding_translation = On) 16 Warning: PHP Request Startup: Input variables exceeded 5. To increase the limit change max_input_va…
|
H A D | bug63447_002.phpt | 2 Bug #63447 (max_input_vars doesn't filter variables when mbstring.encoding_translation = On) 16 Warning: PHP Request Startup: Input variables exceeded 4. To increase the limit change max_input_va…
|