Home
last modified time | relevance | path

Searched refs:ref (Results 76 – 100 of 249) sorted by relevance

12345678910

/PHP-7.4/ext/ldap/tests/
H A Dldap_parse_reference_basic.phpt17 "ref" => "cn=userA,$base",
21 $ref = ldap_first_reference($link, $result);
24 ldap_parse_reference($link, $ref, $refs),
/PHP-7.4/Zend/tests/generators/errors/
H A Dnon_ref_generator_iterated_by_ref_error.phpt2 Non-ref generators cannot be iterated by-ref
/PHP-7.4/ext/standard/tests/array/
H A Dbug79839.phpt12 array_walk($test, function(&$ref) {
13 $ref = []; // Should throw
/PHP-7.4/ext/reflection/tests/
H A Dbug29268.phpt15 $ref = new reflectionMethod('B','doit');
16 $parameters = $ref->getParameters();
H A D007.phpt11 $ref = new ReflectionClass($class);
22 var_dump($ref->newInstance());
36 var_dump($ref->newInstance(25));
46 var_dump($ref->newInstance(25, 42));
/PHP-7.4/Zend/tests/
H A Dbug50146.phpt10 $ref = new ReflectionObject($obj);
11 var_dump($ref->hasProperty('b'));
H A Dcall_user_func_007.phpt6 function foo(&$ref) { $ref = 24; }
H A Dbug74164.phpt2 Bug #74164 (PHP hangs when an invalid value is dynamically passed to typehinted by-ref arg)
12 call_user_func(function (array &$ref) {var_dump("xxx");}, 'not_an_array_variable');
H A Dbug43201.phpt17 $c->arr[0]["k2"] = $ref;
19 $ref = chop($undef);
20 $c->arr[$cnt]["k2"] = $ref;
29 Notice: Undefined variable: ref in %sbug43201.php on line 14
/PHP-7.4/ext/spl/tests/
H A Dfixedarray_002.phpt56 $ref = "value4";
57 $ref2 =&$ref;
58 $a[4] = $ref;
59 $ref = "value5";
H A Ddit_002.phpt17 $ref = new ReflectionClass($class);
18 $obj = $ref->newInstance('glob://*');
/PHP-7.4/ext/soap/
H A Dphp_schema.c1077 if (ref) { in schema_group()
1511 if (ref) { in schema_element()
1744 if (ref) { in schema_attribute()
1984 } else if (ref) { in schema_attributeGroup()
2070 if ((tmp = zend_hash_str_find_ptr(ht, ref, strlen(ref))) != NULL) { in schema_find_by_ref()
2073 ref = strrchr(ref, ':'); in schema_find_by_ref()
2074 if (ref) { in schema_find_by_ref()
2126 efree(attr->ref); in schema_attribute_fixup()
2507 if (attr->ref) { in delete_attribute()
2533 if (attr->ref) { in delete_attribute_persistent()
[all …]
/PHP-7.4/ext/soap/tests/
H A Dbug71996.phpt15 $ref = array("foo");
16 $data = array(&$ref);
19 $ref = array("def" => "foo");
20 $data = array("abc" => &$ref);
/PHP-7.4/tests/lang/
H A DforeachLoop.009.phpt10 $ref=&$refedArray;
18 $ref=&$refedArray;
26 $ref=&$refedArray;
40 $ref=&$refedArray;
H A DpassByReference_003.phpt10 function passbyRef(&$ref) {
12 var_dump($ref);
H A DpassByReference_006.phpt35 echo "\n ---- Pass uninitialised array & object by ref: function call ---\n";
40 echo "\n ---- Pass uninitialised arrays & objects by ref: static method call ---\n";
45 echo "\n\n---- Pass uninitialised arrays & objects by ref: constructor ---\n";
50 echo "\n ---- Pass uninitialised arrays & objects by ref: instance method call ---\n";
57 ---- Pass uninitialised array & object by ref: function call ---
103 ---- Pass uninitialised arrays & objects by ref: static method call ---
152 ---- Pass uninitialised arrays & objects by ref: constructor ---
198 ---- Pass uninitialised arrays & objects by ref: instance method call ---
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_watch.c297 watch->ref = NULL;
375 if (watch->ref != NULL) {
383 coll->ref.type = WATCH_ON_REFCOUNTED;
385 coll->ref.coll = coll;
388 phpdbg_watch_backup_data(&coll->ref);
418 if (watch->ref != NULL) {
427 coll->ref.coll = coll;
428 phpdbg_update_watch_ref(&coll->ref);
431 phpdbg_watch_backup_data(&coll->ref);
437 } else if (watch->ref) {
[all …]
/PHP-7.4/Zend/tests/arg_unpack/
H A Dtraversable_with_by_ref_parameters.phpt6 function test($val1, $val2, $val3, &$ref) {
7 $ref = 42;
/PHP-7.4/ext/soap/tests/schema/
H A Dschema058.phpt12 <attribute ref="enc12:itemType" wsdl:itemType="int"/>
13 <attribute ref="enc12:arraySize" wsdl:arraySize="*"/>
H A Dschema073.phpt2 SOAP XML Schema 73: SOAP 1.1 Array (document style, element with type ref)
13 <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="int[]"/>
H A Dschema060.phpt12 <attribute ref="enc12:itemType" wsdl:itemType="int"/>
13 <attribute ref="enc12:arraySize" wsdl:arraySize="* 1"/>
/PHP-7.4/Zend/tests/arrow_functions/
H A D006.phpt9 $ref =& $id($var);
10 $ref++;
/PHP-7.4/ext/standard/tests/serialize/
H A Dserialization_arrays_004.phpt38 echo "\n\n--- 1,2 ref container:\n";
45 echo "\n\n--- 1,2,3 ref container:\n";
113 --- 1,2 ref container:
185 --- 1,2,3 ref container:
/PHP-7.4/ext/soap/tests/soap12/
H A Dsoap12-test.inc111 function echoResolvedRef($ref) {
112 return $ref->RelativeReference->base.$ref->RelativeReference->href;
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcdf_time.c188 static const char *ref = "Sat Apr 23 01:30:00 1977"; in main() local
195 if (strcmp(ref, p) != 0) in main()
196 errx(1, "Error date %s != %s\n", ref, p); in main()

Completed in 54 milliseconds

12345678910