Home
last modified time | relevance | path

Searched refs:references (Results 1 – 25 of 116) sorted by relevance

12345

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_result_references_mysqlnd.phpt2 References to result sets - mysqlnd (no copies but references)
22 $references = array();
31 $references[$idx]['row_ref'] = &$row;
32 $references[$idx]['row_copy'] = $row;
33 $references[$idx]['id_ref'] = &$row['id'];
34 $references[$idx++]['id_copy'] = $row['id'];
37 debug_zval_dump($references);
47 $references[$idx]['row_ref'] = &$rows[$i];
48 $references[$idx]['row_copy'] = $rows[$i];
50 $references[$idx]['id_copy'] = $rows[$i]['id'];
[all …]
H A Dmysqli_result_references.phpt14 $references = array();
23 $references[$idx] = array(
26 $references[$idx++]['id'] += 0;
34 $references[$idx] = array(
37 $references[$idx++]['id'] += 0;
52 $references[$idx] = array(
55 $references[$idx]['id2'] = &$references[$idx]['id'];
56 $references[$idx]['id'] += 1;
57 $references[$idx++]['id2'] += 1;
60 $references[$idx++] = &$res;
[all …]
H A Dmysqli_stmt_bind_param_call_user_func.phpt63 print "Call user func, procedural, using references for everything\n";
91 print "Call user func, object oriented, using references for everything\n";
119 …print "Call user func, object oriented, using variable for types. using references for bound param…
175 print "Call user func, procedural, using references for everything but using variable for types\n";
339 Call user func, procedural, using references for everything
342 Call user func, object oriented, using references for everything
345 Call user func, object oriented, using variable for types. using references for bound parameter
348 Call user func, object oriented, using constant for types. using references for bound parameter
351 Call user func, procedural, using references for everything but using variable for types
354 Call user func, procedural, using references for bound parameter, using variables for resource and …
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_chunk_variation7.phpt2 Test array_chunk() function : usage variations - references
13 * 1. input array containing references
20 echo "\n-- Testing array_chunk(), input array containing references \n";
40 -- Testing array_chunk(), input array containing references
H A Dcompact_variation1.phpt2 Test compact() function : usage variations - arrays containing references.
11 * compact variations - arrays with references
13 echo "*** Testing compact() : usage variations - arrays containg references ***\n";
29 *** Testing compact() : usage variations - arrays containg references ***
H A Darray_splice_variation1.phpt2 Test array_splice() function : usage variations - references
18 echo "Test behaviour of input arrays containing references \n";
29 echo "Test behaviour of replacement array containing references \n";
66 Test behaviour of input arrays containing references
91 Test behaviour of replacement array containing references
H A Darray_map_variation8.phpt2 Test array_map() function : usage variations - array with references
14 echo "*** Testing array_map() : array with references for 'arr1' argument ***\n";
50 *** Testing array_map() : array with references for 'arr1' argument ***
H A Darray_filter_variation6.phpt2 Test array_filter() function : usage variations - 'input' array containing references
14 echo "*** Testing array_filter() : usage variations - 'input' containing references ***\n";
47 *** Testing array_filter() : usage variations - 'input' containing references ***
H A Darray_walk_recursive_variation5.phpt14 echo "*** Testing array_walk_recursive() : array with references ***\n";
21 // 'input' array containing references to above variables
44 *** Testing array_walk_recursive() : array with references ***
H A Darray_walk_variation5.phpt14 echo "*** Testing array_walk() : array with references ***\n";
21 // 'input' array containing references to above variables
44 *** Testing array_walk() : array with references ***
H A Dusort_variation9.phpt44 echo "\n-- Sorting \$array_arg containing different references --\n";
52 -- Sorting $array_arg containing different references --
H A Darray_map_variation2.phpt2 Test array_map() function : usage variations - references
11 echo "*** Testing array_map() : references ***\n";
30 *** Testing array_map() : references ***
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_arrays_005.phpt2 serialization: arrays with references, nested
37 echo "\n\n--- Nested array references 1 element in containing array:\n";
51 echo "\n\n--- Nested array references 2 elements in containing array:\n";
59 echo "\n\n--- Containing array references 1 element in nested array:\n";
66 echo "\n\n--- Containing array references 2 elements in nested array:\n";
73 echo "\n\n--- Nested array references container:\n";
82 --- Nested array references 1 element in containing array:
220 --- Nested array references 2 elements in containing array:
289 --- Containing array references 1 element in nested array:
358 --- Containing array references 2 elements in nested array:
[all …]
/PHP-5.5/tests/lang/
H A Dbug22510.phpt2 Bug #22510 (segfault among complex references)
99 Notice: Only variable references should be returned by reference in %s on line %d
102 Notice: Only variable references should be returned by reference in %s on line %d
121 Notice: Only variable references should be returned by reference in %s on line %d
124 Notice: Only variable references should be returned by reference in %s on line %d
H A DreturnByReference.009.phpt2 Returning a references returned by another function
38 Notice: Only variable references should be returned by reference in %s on line %d
/PHP-5.5/ext/phar/tests/
H A Dtest_alias_unset.phpt20 $phar2->setAlias('first'); // this works because there are no references to $fname open
24 $a = fopen($pname . '/file1.txt', 'r'); // this works because there are no references to $fname2 op…
26 $phar2 = new Phar($fname2); // fails because references open to $fname
/PHP-5.5/ext/ereg/tests/
H A D010.phpt2 Long back references
H A D008.phpt2 Test back-references in regular expressions
/PHP-5.5/tests/classes/
H A Dstatic_properties_004.phpt16 echo "\nBut because this is implemented using PHP references, the reference set can easily be split…
33 But because this is implemented using PHP references, the reference set can easily be split:
/PHP-5.5/ext/standard/tests/general_functions/
H A Ddebug_zval_dump_v.phpt38 echo "\n--- Variation 2: one variable references another ---\n";
44 /* $ref_first_var references $first_var */
61 echo "\n--- Variation 3: multiple references of variables ---\n";
138 --- Variation 2: one variable references another ---
157 --- Variation 3: multiple references of variables ---
/PHP-5.5/Zend/tests/
H A Dstr_offset_002.phpt9 Fatal error: Cannot create references to/from string offsets in %sstr_offset_002.php on line 3
H A Dbug35163.phpt2 Bug #35163 (Array elements can lose references)
H A Ddereference_006.phpt2 Testing array dereference and references
H A Ddereference_009.phpt2 Testing array dereference with references
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug44686.phpt2 Bug #44686 (SOAP-ERROR: Parsing WSDL with references)

Completed in 44 milliseconds

12345