Home
last modified time | relevance | path

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

1...<<11121314151617181920>>...75

/PHP-8.0/Zend/tests/
H A Dns_029.phpt2 029: Name ambiguity (class name & import name)
13 Fatal error: Cannot declare class Foo because the name is already in use in %sns_029.php on line 4
H A Dns_030.phpt2 030: Name ambiguity (import name & class name)
13 Fatal error: Cannot use A\B as Foo because the name is already in use in %sns_030.php on line 5
H A Dmagic_by_ref_004.phpt7 function __unset(&$name) { }
11 $name = "prop";
13 var_dump($t->$name);
H A Dmagic_by_ref_003.phpt7 function __get(&$name) { }
11 $name = "prop";
12 var_dump($t->$name);
H A Dbug26697.phpt6 spl_autoload_register(function ($name) {
7 echo __METHOD__ . "($name)\n";
9 echo __METHOD__ . "($name), done\n";
H A Dmagic_by_ref_005.phpt7 function __isset(&$name) { }
11 $name = "prop";
13 var_dump(isset($t->$name));
H A Dmagic_by_ref_001.phpt7 function __set(&$name, $val) { }
11 $name = "prop";
12 $t->$name = 1;
H A Dbug36214.phpt8 public function __set($name,$var) {
9 $this->stack[$name] = $var;return;
12 public function &__get($name) {
13 return $this->stack[$name];
/PHP-8.0/ext/standard/tests/file/
H A Dtempnam_variation3.phpt47 echo "File name is => ";
81 File name is => %s/%s
85 File name is => %s/%s
89 File name is => %s/%s
93 File name is => %s/%s
97 File name is => %s/%s
101 File name is => %s/%s
109 File name is => %s/dir%s
113 File name is => %s/php%s
H A Dtempnam_variation8-win32.phpt48 echo "File name is => ";
89 File name is => %s\tempnam_variation8\tempnam_variation8_sub\t%s
94 File name is => %s\tempnam_variation8\t%s
99 File name is => %s\tempnam_variation8\t%s
104 File name is => %s\tempnam_variation8\t%s
109 File name is => %s\tempnam_variation8\t%s
116 File name is => %s\t%s
123 File name is => %s\t%s
128 File name is => %s\tempnam_variation8\tempnam_variation8_sub\t%s
133 File name is => %s\tempnam_variation8\tempnam_variation8_sub\t%s
[all …]
/PHP-8.0/ext/standard/tests/general_functions/
H A Dis_callable_basic1.phpt21 /* function name with simple string */
25 /* function name with mixed string and integer */
29 /* function name as NULL */
33 /* function name with boolean name */
37 /* function name with string and special character */
48 /* use check_iscallable() to check whether given string is valid function name
/PHP-8.0/ext/dom/tests/
H A DDOMDocumentType_name_error_001.phpt2 DOMDocumentType::name with invalid state.
11 $name = $doctype->name;
/PHP-8.0/ext/xmlreader/tests/
H A Dnext_basic.phpt30 echo $reader->name . PHP_EOL;
32 echo $reader->name . PHP_EOL;
34 echo $reader->name . PHP_EOL;
36 echo $reader->name . PHP_EOL;
38 echo $reader->name . PHP_EOL;
H A D003-get-errors.phpt25 if ($reader->nodeType == XMLREADER::ELEMENT && $reader->name == 'book') {
26 echo $reader->name . "\n";
30 echo $reader->name . ": ";
41 echo $reader->name . ": ";
44 // Test for call by name for an attribute that doesn't exist
48 echo $reader->name . ": ";
55 echo $reader->name . ": ";
72 XMLReader::getAttribute(): Argument #1 ($name) cannot be empty
H A D003-move-errors.phpt25 if ($reader->nodeType == XMLREADER::ELEMENT && $reader->name == 'book') {
26 echo $reader->name . "\n";
30 echo $reader->name . ": ";
41 echo $reader->name . ": ";
44 // Test for call by name for an attribute that doesn't exist
48 echo $reader->name . ": ";
55 echo $reader->name . "\n";
71 XMLReader::moveToAttribute(): Argument #1 ($name) cannot be empty
/PHP-8.0/Zend/
H A Dzend_API.c1841 while (dep->name) { in zend_startup_module_ex()
1906 while (dep->name) { in zend_sort_modules()
1911 if (strcasecmp(dep->name, r->name) == 0) { in zend_sort_modules()
2030 while (dep->name) { in zend_register_module_ex()
2860 if (name[0] == '\\') { in zend_register_class_alias_ex()
3373 ZSTR_VAL(ce->name), ZSTR_LEN(ce->name), in zend_get_callable_name_ex()
3811 name = zend_new_interned_string(zend_string_copy(name)); in zend_declare_typed_property()
3820 property_info->name = zend_string_copy(name); in zend_declare_typed_property()
3822 …property_info->name = zend_mangle_property_name(ZSTR_VAL(ce->name), ZSTR_LEN(ce->name), ZSTR_VAL(n… in zend_declare_typed_property()
3825 …property_info->name = zend_mangle_property_name("*", 1, ZSTR_VAL(name), ZSTR_LEN(name), is_persist… in zend_declare_typed_property()
[all …]
/PHP-8.0/ext/xml/
H A Dcompat.c42 *qualified = xmlStrncat(*qualified, name, xmlStrlen(name)); in _qualify_namespace()
44 *qualified = xmlStrdup(name); in _qualify_namespace()
58 qualified_name = xmlStrncatNew((xmlChar *)"<", name, xmlStrlen(name)); in _start_element_handler()
81 qualified_name = xmlStrdup(name); in _start_element_handler()
112 qualified_name = xmlStrncat(qualified_name, name, xmlStrlen(name)); in _start_element_handler_ns()
114 qualified_name = xmlStrncatNew((xmlChar *)"<", name, xmlStrlen(name)); in _start_element_handler_ns()
216 qualified_name = xmlStrdup(name); in _end_element_handler()
347 memcpy(*entity+1, name, len); in _build_entity()
368 _get_entity(void *user, const xmlChar *name) in _get_entity() argument
374 ret = xmlGetPredefinedEntity(name); in _get_entity()
[all …]
/PHP-8.0/ext/reflection/
H A Dphp_reflection.c985 while(dep->name) { in _extension_string()
1119 if (name) { in read_attributes()
1190 name = NULL; in reflect_attributes()
3388 RETURN_STRINGL(ZSTR_VAL(name), backslash - ZSTR_VAL(name)); in ZEND_METHOD()
3602 zval name; in ZEND_METHOD() local
5125 zend_string *name = ce->name; in ZEND_METHOD() local
5143 zend_string *name = ce->name; in ZEND_METHOD() local
5146 RETURN_STRINGL(ZSTR_VAL(name), backslash - ZSTR_VAL(name)); in ZEND_METHOD()
5164 zend_string *name = ce->name; in ZEND_METHOD() local
5834 name = key; in add_extension_class()
[all …]
/PHP-8.0/ext/spl/tests/
H A Dbug60201.phpt15 ["name"]=>
20 ["name"]=>
25 ["name"]=>
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_driver_name.phpt17 $name = $db->getAttribute(PDO::ATTR_DRIVER_NAME);
18 var_dump($name);
24 if ($name != $new_name)
25 printf("[002] Did we change it from '%s' to '%s'?\n", $name, $new_name);
/PHP-8.0/ext/pdo_sqlite/tests/
H A Dbug33841.phpt15 $stmt->bindParam(':text', $name);
16 $name = 'test1';
20 $stmt->bindParam(':text', $name);
21 $name = 'test2';
/PHP-8.0/ext/phar/tests/cache_list/files/
H A Dwrite6.phar.inc19 foreach ($phar2 as $name => $file) {
20 $arr[$name] = $file->getContent();
23 foreach ($arr as $name => $content) {
24 echo $name, " ", $content;
/PHP-8.0/ext/phar/tests/
H A Dphar_metadata_write.phpt23 foreach($files as $name => $cont) {
24 var_dump(file_get_contents($pname.'/'.$name));
37 foreach($files as $name => $cont) {
38 var_dump($phar[$name]->getMetadata());
43 foreach($files as $name => $cont) {
44 var_dump(file_get_contents($pname.'/'.$name));
/PHP-8.0/ext/date/tests/
H A Dtimezone_name_from_abbr_basic1.phpt14 echo "-- Lookup with just name --\n";
18 echo "-- Lookup with name and offset--\n";
22 echo "-- Tests without valid name - uses gmtOffset and isdst to find match --\n";
37 -- Lookup with just name --
40 -- Lookup with name and offset--
43 -- Tests without valid name - uses gmtOffset and isdst to find match --
/PHP-8.0/ext/standard/html_tables/
H A Dhtml_table_gen.php354 $name = "HTML5"; variable
464 "/* {{{ Start of double code point tables for $name */", "\n\n";
491 echo "/* {{{ Stage 3 Tables for $name */", "\n\n";
567 echo "/* end of stage 3 Tables for $name }}} */", "\n\n";
573 "/* {{{ Stage 2 Tables for $name */", "\n\n";
624 "/* end of stage 2 tables for $name }}} */", "\n\n";
696 "/* {{{ $name hash table for entity -> codepoint */", "\n\n";
788 "/* end of $name hash table for entity -> codepoint }}} */\n\n";
793 $name = "HTML 4.01"; variable
799 $name = "Basic entities (no apos)"; variable
[all …]

Completed in 98 milliseconds

1...<<11121314151617181920>>...75