Home
last modified time | relevance | path

Searched refs:name (Results 151 – 175 of 2214) sorted by relevance

12345678910>>...89

/php-src/ext/dom/
H A Delement.c266 char *name; in PHP_METHOD() local
559 char *name; in PHP_METHOD() local
580 char *name; in PHP_METHOD() local
605 char *name; in PHP_METHOD() local
766 char *name; in dom_element_get_elements_by_tag_name() local
831 char *uri, *name; in PHP_METHOD() local
1079 char *name, *uri; in PHP_METHOD() local
1129 char *uri, *name; in PHP_METHOD() local
1189 char *uri, *name; in dom_element_get_elements_by_tag_name_ns() local
1226 char *name; in PHP_METHOD() local
[all …]
/php-src/ext/mbstring/tests/
H A Dbug81011.phpt9 123 => ['name' => 'this', 'id' => 444],
10 234 => ['name' => 'that', 'id' => 555],
29 ["name"]=>
38 ["name"]=>
59 ["name"]=>
68 ["name"]=>
/php-src/ext/libxml/tests/
H A Dlibxml_get_external_entity_loader.phpt9 private $name;
11 public function __construct($name) {
12 $this->name = $name;
20 return "Handler#{$this->name}";
/php-src/Zend/
H A Dzend_enum.c76 ZSTR_VAL(ce->name)); in zend_verify_enum_properties()
134 ZSTR_VAL(class_type->name), in zend_implement_unit_enum()
135 ZSTR_VAL(interface->name)); in zend_implement_unit_enum()
144 ZSTR_VAL(class_type->name), in zend_implement_backed_enum()
145 ZSTR_VAL(interface->name)); in zend_implement_backed_enum()
210 zend_string *name; in zend_enum_build_backed_enum_table() local
236 ZSTR_VAL(name)); in zend_enum_build_backed_enum_table()
249 ZSTR_VAL(name)); in zend_enum_build_backed_enum_table()
502 INIT_CLASS_ENTRY_EX(tmp_ce, name, strlen(name), functions); in zend_register_internal_enum()
598 zend_string *name_str = zend_string_init_interned(name, strlen(name), 1); in zend_enum_add_case_cstr()
[all …]
/php-src/Zend/tests/enum/
H A Dunserialize-refcount.phpt27 ["name"]=>
31 ["name"]=>
35 ["name"]=>
39 ["name"]=>
43 ["name"]=>
/php-src/ext/simplexml/tests/
H A D028.phpt13 $name = $xml->getName();
14 echo "$pad<$name";
24 echo $pad."</$name>\n";
30 $people->person['name'] = 'John';
38 <person name="John">
H A D020.phpt8 $doc = simplexml_load_string('<root><name attr="foo">bar</name></root>');
9 print $doc->name["attr"];
11 if ($doc->name["attr"] == "foo") {
/php-src/tests/basic/
H A Drfc1867_max_file_uploads_empty_files.phpt9 Content-Disposition: form-data; name="file2"; filename=""
14 Content-Disposition: form-data; name="file3"; filename=""
19 Content-Disposition: form-data; name="file4"; filename="file4.txt"
24 Content-Disposition: form-data; name="file1"; filename="file1.txt"
44 ["name"]=>
59 ["name"]=>
74 ["name"]=>
89 ["name"]=>
/php-src/ext/phar/tests/
H A Dmetadata_write_commit.phpt21 foreach($files as $name => $cont) {
22 var_dump(file_get_contents($pname.'/'.$name));
32 foreach($files as $name => $cont) {
33 var_dump($phar[$name]->getMetadata());
41 foreach($files as $name => $cont) {
42 var_dump(file_get_contents($pname.'/'.$name));
45 foreach($files as $name => $cont) {
46 var_dump($phar[$name]->getMetadata());
/php-src/Zend/tests/readonly_props/
H A Dmagic_get_set.phpt13 public function __get($name) {
14 echo __METHOD__, "($name)\n";
18 public function __set($name, $value) {
19 echo __METHOD__, "($name, $value)\n";
22 public function __unset($name) {
23 echo __METHOD__, "($name)\n";
26 public function __isset($name) {
27 echo __METHOD__, "($name)\n";
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_magic_set.phpt8 public function __get($name) {
9 echo "__get ", $name, "\n";
12 public function __set($name, $value) {
13 echo "__set ", $name, " = ", $value, "\n";
15 public function __isset($name) {
16 echo "__isset ", $name, "\n";
19 public function __unset($name) {
20 echo "__unset ", $name, "\n";
/php-src/Zend/tests/
H A Dbug40833.phpt10 function __get($name)
12 if ( isset($this->data[$name]) )
13 return $this->data[$name];
15 return $this->data[$name] = new set($this);
18 function __set($name, $value)
20 $this->modified[$name] = $value;
41 // $this->entity->{$this->name} = null;
/php-src/ext/standard/tests/file/
H A Dcopy_variation1.phpt20 "copy.tmp", //regular file name
22 ".tmp", //file name only with extension
48 echo "Destination file name => ";
79 Destination file name => %s/copy.tmp
93 Destination file name => %s/.tmp
100 Destination file name => %s/123.tmp
107 Destination file name => %s/copy_variation1.123
114 Destination file name => %s/123
121 Destination file name => %s/123copy_variation1.tmp
128 Destination file name => %s/copy_variation.tmp123
[all …]
/php-src/ext/pdo_sqlite/tests/
H A Dbug78192.phpt9 $connection->query('CREATE TABLE user (id INTEGER PRIMARY KEY NOT NULL, name VARCHAR(255) NOT NULL)…
11 $stmt = $connection->prepare('INSERT INTO user (id, name) VALUES(:id, :name)');
14 'name' => 'test',
31 ["name"]=>
40 ["name"]=>
/php-src/sapi/apache2handler/
H A Dapache_config.c59 static const char *real_value_hnd(cmd_parms *cmd, void *dummy, const char *name, const char *value,… in real_value_hnd() argument
64 …phpapdebug((stderr, "Getting %s=%s for %p (%d)\n", name, value, dummy, zend_hash_num_elements(&d->… in real_value_hnd()
75 zend_hash_str_update_mem(&d->config, (char *) name, strlen(name), &e, sizeof(e)); in real_value_hnd()
79 static const char *php_apache_value_handler(cmd_parms *cmd, void *dummy, const char *name, const ch… in php_apache_value_handler() argument
81 return real_value_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_value_handler()
86 return real_value_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_value_handler()
103 static const char *php_apache_flag_handler(cmd_parms *cmd, void *dummy, const char *name, const cha… in php_apache_flag_handler() argument
105 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_PERDIR); in php_apache_flag_handler()
110 return real_flag_hnd(cmd, dummy, name, value, PHP_INI_SYSTEM); in php_apache_admin_flag_handler()
180 char *get_php_config(void *conf, char *name, size_t name_len) in get_php_config() argument
[all …]
/php-src/ext/spl/tests/
H A Dobserver_002.phpt41 protected $name = '';
43 function __construct($name = 'obj')
45 $this->name = '$' . $name;
50 echo $this->name . '->' . __METHOD__ . '(' . $subject->getName() . ");\n";
55 return $this->name;
61 protected $name = '';
64 function __construct($name = 'sub')
67 $this->name = '$' . $name;
72 echo $this->name . '->' . __METHOD__ . '(' . $observer->getName() . ");\n";
89 echo $this->name . '->' . __METHOD__ . "();\n";
[all …]
/php-src/.github/workflows/
H A Ddocs.yml1 name: Docs
19 - name: git checkout
21 - name: Install dependencies
23 - name: Check formatting
25 - name: Publish
/php-src/ext/dom/tests/modern/spec/
H A Dcreate_element_util.inc2 function createElement($doc, $name, ?string $value = null) {
3 $element = $doc->createElement($name);
8 function createElementNS($doc, $ns, $name, ?string $value = null) {
9 $element = $doc->createElementNS($ns, $name);
/php-src/ext/dba/libinifile/
H A Dinifile.c53 if (key->name) { in inifile_key_free()
54 efree(key->name); in inifile_key_free()
114 char *name; in inifile_key_split() local
118 key.name = estrdup(name+1); in inifile_key_split()
132 spprintf(&result, 0, "[%s]%s", key->group, key->name ? key->name : ""); in inifile_key_string()
134 } else if (key->name) { in inifile_key_string()
196 if (ln->key.name) { in inifile_read()
226 assert(k1->group && k1->name && k2->group && k2->name); in inifile_key_cmp()
229 if (!strcasecmp(k1->name, k2->name)) { in inifile_key_cmp()
505 if (!value || (key->name && strlen(key->name))) { in inifile_delete_replace_append()
[all …]
/php-src/ext/curl/tests/
H A Dcurl_setopt_callables.phpt33 …llback for option CURLOPT_PROGRESSFUNCTION, function "undefined" not found or invalid function name
34 …llback for option CURLOPT_PROGRESSFUNCTION, function "undefined" not found or invalid function name
35 …llback for option CURLOPT_XFERINFOFUNCTION, function "undefined" not found or invalid function name
36 …llback for option CURLOPT_XFERINFOFUNCTION, function "undefined" not found or invalid function name
37 …llback for option CURLOPT_FNMATCH_FUNCTION, function "undefined" not found or invalid function name
39 … callback for option CURLOPT_WRITEFUNCTION, function "undefined" not found or invalid function name
40 … callback for option CURLOPT_WRITEFUNCTION, function "undefined" not found or invalid function name
41 …callback for option CURLOPT_HEADERFUNCTION, function "undefined" not found or invalid function name
42 …callback for option CURLOPT_HEADERFUNCTION, function "undefined" not found or invalid function name
43 …d callback for option CURLOPT_READFUNCTION, function "undefined" not found or invalid function name
[all …]
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_mips.lua55 map_action[name] = n-1
73 local num = map_action[name]
143 t[name] = n
150 for name, n in pairs(map_global) do t[n] = name end
161 for name, n in pairs(map_global) do t[n] = name end
172 for name, n in pairs(map_global) do t[n] = name end
190 t[name] = n
191 map_extern_[n] = name
1102 local tp = map_type[name]
1110 map_type[name] = {
[all …]
/php-src/ext/dom/lexbor/lexbor/encoding/
H A Dencoding.c11 lxb_encoding_data_by_pre_name(const lxb_char_t *name, size_t length) in lxb_encoding_data_by_pre_name() argument
20 end = name + length; in lxb_encoding_data_by_pre_name()
24 switch (*name) { in lxb_encoding_data_by_pre_name()
26 name++; in lxb_encoding_data_by_pre_name()
32 while (name < end); in lxb_encoding_data_by_pre_name()
35 while (name < end) { in lxb_encoding_data_by_pre_name()
45 if (name == end) { in lxb_encoding_data_by_pre_name()
50 name, (end - name)); in lxb_encoding_data_by_pre_name()
199 lxb_encoding_data_by_name_noi(const lxb_char_t *name, size_t length) in lxb_encoding_data_by_name_noi() argument
201 return lxb_encoding_data_by_name(name, length); in lxb_encoding_data_by_name_noi()
/php-src/ext/session/tests/
H A Drfc1867_disabled.phpt7 session.name=PHPSESSID
14 session.upload_progress.name=PHP_SESSION_UPLOAD_PROGRESS
28 Content-Disposition: form-data; name="PHPSESSID"
32 Content-Disposition: form-data; name="file1"; filename="file1.txt"
36 Content-Disposition: form-data; name="file2"; filename="file2.txt"
53 ["name"]=>
68 ["name"]=>
H A Drfc1867_disabled_2.phpt7 session.name=PHPSESSID
14 session.upload_progress.name=PHP_SESSION_UPLOAD_PROGRESS
28 Content-Disposition: form-data; name="PHPSESSID"
32 Content-Disposition: form-data; name="file1"; filename="file1.txt"
36 Content-Disposition: form-data; name="file2"; filename="file2.txt"
53 ["name"]=>
68 ["name"]=>
/php-src/ext/standard/tests/network/
H A Dsetcookie_error.phpt21 setcookie('name', 'invalid;');
26 setcookie('name', 'value', 100, 'invalid;');
31 setcookie('name', 'value', 100, 'path', 'invalid;');
39 setcookie('name', 'value', 315328464000);
53 setcookie(): Argument #1 ($name) cannot be empty
54 setcookie(): Argument #1 ($name) cannot contain "=", ",", ";", " ", "\t", "\r", "\n", "\013", or "\…
62 string(27) "Set-Cookie: name=invalid%3B"

Completed in 72 milliseconds

12345678910>>...89