Home
last modified time | relevance | path

Searched refs:name (Results 276 – 300 of 2223) sorted by relevance

1...<<11121314151617181920>>...89

/php-src/ext/standard/tests/file/
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-src/ext/dom/tests/bug79701/
H A Dset_attribute_xml.phpt40 function getNamespace($name) {
41 if (str_contains($name, 'xml:')) {
58 test($dom, fn ($element, $name, $value) => $element->setAttribute($name, $value));
64 test($dom, fn ($element, $name, $value) => $element->setAttributeNS(getNamespace($name), $name, $va…
69 test($dom, fn ($element, $name, $value) => $element->setAttribute($name, $value));
74 test($dom, fn ($element, $name, $value) => $element->setAttributeNS(getNamespace($name), $name, $va…
/php-src/build/
H A DMakefile.global116 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
117 find . -name \*.lo -o -name \*.o -o -name \*.dep | xargs rm -f
118 find . -name \*.la -o -name \*.a | xargs rm -f
119 find . -name \*.so | xargs rm -f
120 find . -name .libs -a -type d|xargs rm -rf
141 find . -name \*.gcda | xargs rm -f
144 find . -name \*.lo -o -name \*.o | xargs rm -f
145 find . -name \*.la -o -name \*.a | xargs rm -f
146 find . -name \*.so | xargs rm -f
/php-src/ext/reflection/tests/
H A DReflectionEnum_getCases.phpt26 ["name"]=>
33 ["name"]=>
42 ["name"]=>
49 ["name"]=>
H A Dgh12908.phpt2 GH-12908 (Show attribute name/class in ReflectionAttribute dump)
18 [name] => AllowDynamicProperties
23 [name] => Foo
H A DReflectionConstant_dump.phpt27 ["name"]=>
32 ["name"]=>
37 ["name"]=>
42 ["name"]=>
/php-src/ext/standard/tests/serialize/
H A Dserialization_objects_007.phpt5 spl_autoload_register(function ($name) {
6 echo "in autoload($name)\n";
11 function check($name) {
12 echo "in check($name)\n";
/php-src/Zend/tests/enum/
H A Dno-unset-propertes.phpt16 unset($foo->name);
23 unset($intFoo->name);
35 Cannot unset readonly property Foo::$name
36 Cannot unset readonly property IntFoo::$name
/php-src/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
H A Doutput_add_rewrite_var_basic1.phpt19 output_add_rewrite_var('<name>', '<value>');
39 output_add_rewrite_var('<name>', '<value>');
86 <form method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;VALUE&gt;" /> </form>
87 <form action="./foo.php" method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;VALUE&gt;…
88 <form action="//php.net/bar.php" method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;V…
101 <form method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;VALUE&gt;" /> </form>
116 <form method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;VALUE&gt;" /><input type="hi…
117 …oo.php" method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;VALUE&gt;" /><input type=…
118 …ar.php" method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;VALUE&gt;" /><input type=…
119 …ar.php" method="get"><input type="hidden" name="&lt;NAME&gt;" value="&lt;VALUE&gt;" /><input type=…
[all …]
/php-src/Zend/tests/
H A Dspecial_name_error3.phpt2 Cannot use special class name as trait name
10 Fatal error: Cannot use 'self' as class name as it is reserved in %s on line %d
H A Dbug70332.phpt10 $arg->name = array();
12 test($arg)->name[1] = "xxxx";
19 [name] => Array
/php-src/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 …]
/php-src/sapi/fpm/fpm/
H A Dfpm_env.c25 int setenv(char *name, char *value, int clobber) /* {{{ */ in setenv() argument
31 if (clobber == 0 && getenv(name) != 0) { in setenv()
35 size_t length = strlen(name) + strlen(value) + 2; in setenv()
39 snprintf(cp, length, "%s=%s", name, value); in setenv()
44 int setenv(char *name, char *value, int overwrite) /* {{{ */ in setenv() argument
46 int name_len = strlen(name); in setenv()
50 memcpy(var, name, name_len); in setenv()
87 void unsetenv(const char *name) /* {{{ */ in unsetenv() argument
89 if(getenv(name) != NULL) { in unsetenv()
94 if (nvmatch(name, environ[ct]) != 0) del=ct; /* <--- WTF?! */ in unsetenv()
[all …]
H A Dfpm_conf.c666 free(wpc->name); in fpm_worker_pool_config_free()
743 config->name = malloc(strlen(shared_config->name) + sizeof("_status")); in fpm_worker_pool_shared_status_alloc()
744 if (!config->name) { in fpm_worker_pool_shared_status_alloc()
747 strcpy(config->name, shared_config->name); in fpm_worker_pool_shared_status_alloc()
748 strcpy(config->name + strlen(shared_config->name), "_status"); in fpm_worker_pool_shared_status_alloc()
1232 …et listen address as it's already used in another pool '%s'", wp2->config->name, wp->config->name); in fpm_conf_process_all_pools()
1456 if (!wp->config->name) continue; in fpm_conf_ini_parser_section()
1471 config->name = strdup(Z_STRVAL_P(section)); in fpm_conf_ini_parser_section()
1472 if (!config->name) { in fpm_conf_ini_parser_section()
1510 for (; parser->name; parser++) { in fpm_conf_ini_parser_entry()
[all …]
/php-src/ext/standard/tests/array/
H A Darray_map_variation16.phpt41 …#1 ($callback) must be a valid callback or null, function "echo" not found or invalid function name
43 …1 ($callback) must be a valid callback or null, function "array" not found or invalid function name
45 …1 ($callback) must be a valid callback or null, function "empty" not found or invalid function name
47 …#1 ($callback) must be a valid callback or null, function "eval" not found or invalid function name
49 …#1 ($callback) must be a valid callback or null, function "exit" not found or invalid function name
51 …1 ($callback) must be a valid callback or null, function "isset" not found or invalid function name
53 …#1 ($callback) must be a valid callback or null, function "list" not found or invalid function name
55 …1 ($callback) must be a valid callback or null, function "print" not found or invalid function name
/php-src/ext/xmlreader/tests/
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-src/ext/dom/tests/
H A DDOMEntity_fields.phpt29 echo "Entity name: {$entity->nodeName}\n";
46 Entity name: sampleExternalPublicWithNotationName1
54 Entity name: sampleExternalPublicWithNotationName2
62 Entity name: sampleExternalPublicWithoutNotationName1
70 Entity name: sampleExternalPublicWithoutNotationName2
78 Entity name: sampleExternalSystemWithNotationName
86 Entity name: sampleExternalSystemWithoutNotationName
94 Entity name: sampleInternalEntity
/php-src/ext/phar/tests/cache_list/files/
H A Dwrite5.phar.inc18 foreach ($phar2 as $name => $file) {
19 $arr[$name] = $file->getContent();
22 foreach ($arr as $name => $content) {
23 echo $name, " ", $content;
H A Dwrite6.phar13 foreach ($phar2 as $name => $file) {
14 $arr[$name] = $file->getContent();
17 foreach ($arr as $name => $content) {
18 echo $name, " ", $content;
/php-src/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-src/ext/simplexml/tests/
H A Dbug41861.phpt16 $name = $xml->getName();
18 echo "root(recursive): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
20 echo "root(non-recursive): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
26 $name = $child->getName();
29 echo "children($ns): '$name' -- namespaces: ", implode(', ', $namespaces), "\n";
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_arm.lua52 map_action[name] = n-1
70 local num = map_action[name]
144 t[name] = n
151 for name, n in pairs(map_global) do t[n] = name end
162 for name, n in pairs(map_global) do t[n] = name end
173 for name, n in pairs(map_global) do t[n] = name end
191 t[name] = n
192 map_extern_[n] = name
1034 local tp = map_type[name]
1042 map_type[name] = {
[all …]
/php-src/ext/spl/tests/
H A Dspl_autoload_009.phpt8 function my_autoload($name)
10 require $name . '.class.inc';
11 var_dump(class_exists($name));

Completed in 42 milliseconds

1...<<11121314151617181920>>...89