Home
last modified time | relevance | path

Searched refs:name (Results 251 – 275 of 2408) sorted by relevance

1...<<11121314151617181920>>...97

/php-src/ext/standard/tests/array/
H A Darray_intersect_ukey_variation8.phpt2 Test array_intersect_ukey() function : usage variation - Passing non-existing function name to call…
11 //function name within double quotes
18 //function name within single quotes
28 …rgument #3 must be a valid callback, function "unknown_function" not found or invalid function name
29 …rgument #3 must be a valid callback, function "unknown_function" not found or invalid function name
H A Darray_diff_ukey_variation10.phpt2 Test array_diff_ukey() function : usage variation - Passing non-existing function name to callback
11 //function name within double quotes
18 //function name within single quotes
28 …rgument #3 must be a valid callback, function "unknown_function" not found or invalid function name
29 …rgument #3 must be a valid callback, function "unknown_function" not found or invalid function name
H A Dbug76713.phpt21 public $name;
22 public function __get($name) {
23 return $this->name;
29 $obj->name = str_pad("b", 10, 'b');
/php-src/ext/simplexml/tests/
H A D014b.phpt9 <person name="Joe"></person>
10 <person name="Boe"></person>
15 var_dump($people->person[0]['name']);
18 $person['name'] = "XXX";
19 var_dump($people->person[1]['name']);
/php-src/benchmark/
H A Dgenerate_diff.php28 foreach ($headSummary as $name => $headBenchmark) {
29 if ($name === 'branch') {
32 $baseInstructions = $baseSummary[$name]['instructions'] ?? null;
33 $headInstructions = $headSummary[$name]['instructions'];
34 $output .= "| $name | "
/php-src/tests/basic/
H A Drfc1867_post_max_filesize.phpt10 Content-Disposition: form-data; name="file1"; filename="file1.txt"
15 Content-Disposition: form-data; name="file2"; filename="file2.txt"
20 Content-Disposition: form-data; name="file3"; filename="file3.txt"
40 ["name"]=>
55 ["name"]=>
70 ["name"]=>
/php-src/Zend/tests/
H A Dlist_keyed_evaluation_order.inc7 private $name;
8 public function __construct(string $name) {
9 $this->name = $name;
13 echo "$this->name evaluated.", PHP_EOL;
14 return $this->name;
H A Dbug79778.phpt29 ["name"]=>
43 [name] => {closure:%s:%d}
54 ["name"]=>
68 [name] => {closure:%s:%d}
78 ["name"]=>
92 [name] => {closure:%s:%d}
H A Dbug52193.phpt39 ["name"]=>
51 ["name"]=>
63 ["name"]=>
75 ["name"]=>
87 ["name"]=>
100 ["name"]=>
111 ["name"]=>
H A Ddynamic_prop_name_leak.phpt2 Dynamic prop name with type conversion in reference position should not leak
6 $name = 0.0;
7 $ref =& $obj->$name;
/php-src/Zend/tests/attributes/
H A D004_name_resolution.phpt10 $arr[] = ['name' => $attribute->getName(), 'args' => $attribute->getArguments()];
50 ["name"]=>
60 ["name"]=>
70 ["name"]=>
80 ["name"]=>
90 ["name"]=>
/php-src/ext/standard/tests/network/
H A Dsetrawcookie_error.phpt21 setrawcookie('name', 'invalid;');
26 setrawcookie('name', 'value', 100, 'invalid;');
31 setrawcookie('name', 'value', 100, 'path', 'invalid;');
39 setrawcookie('name', 'value', 315328464000);
53 setrawcookie(): Argument #1 ($name) must not be empty
54 setrawcookie(): Argument #1 ($name) cannot contain "=", ",", ";", " ", "\t", "\r", "\n", "\013", or…
/php-src/ext/session/tests/user_session_module/
H A Dbug32330.phpt8 session.name=sid
17 function open($path, $name): bool
19 echo "open: path = {$path}, name = {$name}\n";
73 open: path = %s, name = sid
78 open: path = %s, name = sid
83 open: path = %s, name = sid
/php-src/ext/soap/tests/schema/
H A Dschema064.phpt16 <complexType name="testType">
18 <element name="dateTime" type="dateTime"/>
19 <element name="time" type="time"/>
20 <element name="date" type="date"/>
21 <element name="gYearMonth" type="gYearMonth"/>
22 <element name="gYear" type="gYear"/>
23 <element name="gMonthDay" type="gMonthDay"/>
24 <element name="gDay" type="gDay"/>
25 <element name="gMonth" type="gMonth"/>
/php-src/ext/opcache/tests/opt/
H A Dgh8140b.phpt2 GH-8140 (Wrong first class callable by name optimization)
7 function greeter(string $name) {
8 echo "Hello, {$name}!";
H A Dgh8140a.phpt2 GH-8140 (Wrong first class callable by name optimization)
7 function greeter(string $name) {
8 echo "Hello, {$name}!";
/php-src/Zend/tests/traits/
H A Dget_declared_traits_004.phpt8 foreach (get_declared_traits() as $name) {
9 if (strlen($name) == 1) {
10 echo $name;
/php-src/tests/classes/
H A Dmethod_call_variation_001.phpt2 In $a->$b[Y]() and $a->X[Y]() both $a->$b[Y] and $a->X[Y] represent a global function name
13 $name = 'functions';
19 $c->$name[0](1, 2);
20 $c->$name[1][2][3][4](3, 4);
/php-src/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_createfunction.phpt10 $db->query('CREATE TABLE test_pdo_sqlite_createfunction (id INT AUTO INCREMENT, name TEXT)');
18 foreach ($db->query('SELECT testing(name) FROM test_pdo_sqlite_createfunction') as $row) {
25 ["testing(name)"]=>
31 ["testing(name)"]=>
/php-src/ext/xsl/tests/
H A Dbug71571_b.phpt14 <xsl:call-template name="recurse"/>
17 <xsl:template name="recurse">
18 <xsl:param name="COUNT">1</xsl:param>
19 <xsl:call-template name="recurse">
20 <xsl:with-param name="COUNT" select="$COUNT + 1"/>
47 Warning: XSLTProcessor::transformToDoc(): #0 name recurse in %s on line %d
49 Warning: XSLTProcessor::transformToDoc(): #1 name recurse in %s on line %d
51 Warning: XSLTProcessor::transformToDoc(): #2 name / in %s on line %d
/php-src/ext/posix/tests/
H A Dbug75696.phpt8 $name = posix_getgrgid($gid)['name'];
9 $info = posix_getgrnam($name);
/php-src/ext/xml/
H A Dcompat.c31 *qualified = xmlStrncat(*qualified, name, xmlStrlen(name)); in qualify_namespace()
33 *qualified = xmlStrdup(name); in qualify_namespace()
47 qualified_name = xmlStrncatNew((xmlChar *)"<", name, xmlStrlen(name)); in start_element_handler()
97 qualified_name = xmlStrncat(qualified_name, name, xmlStrlen(name)); in start_element_handler_ns()
99 qualified_name = xmlStrncatNew((xmlChar *)"<", name, xmlStrlen(name)); in start_element_handler_ns()
185 end_element_handler(void *user, const xmlChar *name) in end_element_handler() argument
267 const xmlChar *name, in unparsed_entity_decl_handler() argument
327 memcpy(*entity+1, name, len); in build_entity()
348 get_entity(void *user, const xmlChar *name) in get_entity() argument
354 ret = xmlGetPredefinedEntity(name); in get_entity()
[all …]
/php-src/ext/phar/tests/
H A Dmetadata_write.phpt21 foreach($files as $name => $cont) {
22 var_dump(file_get_contents($pname.'/'.$name));
31 foreach($files as $name => $cont) {
32 var_dump($phar[$name]->getMetadata());
37 foreach($files as $name => $cont) {
38 var_dump(file_get_contents($pname.'/'.$name));
/php-src/ext/reflection/tests/
H A DReflectionClass_getReflectionConstants_filter.phpt39 ["name"]=>
46 ["name"]=>
55 ["name"]=>
62 ["name"]=>
71 ["name"]=>
78 ["name"]=>
H A DReflectionParameter_001.phpt29 $name = $parameter->getName();
38 $name = $parameter->getName();
49 $name = $parameter->getName();
60 ["name"]=>
65 ["name"]=>
72 ["name"]=>

Completed in 58 milliseconds

1...<<11121314151617181920>>...97