Home
last modified time | relevance | path

Searched refs:name (Results 476 – 500 of 1889) sorted by relevance

1...<<11121314151617181920>>...76

/PHP-7.2/Zend/tests/traits/
H A Dstatic_004.phpt9 public static function __callStatic($name, $arguments) {
10 return $name;
/PHP-7.2/ext/soap/tests/bugs/
H A Dbug50675.phpt43 $person->name = 'name';
50 …dy><ns1:echoPerson><p xsi:type="ns2:Person" id="ref1"><name xsi:type="SOAP-ENC:string">name</name>…
/PHP-7.2/Zend/tests/
H A Dbug75420.8.phpt10 $name = "foo";
11 $obj->$name = 1;
H A Dbug52051.phpt26 Deprecated: Methods with the same name as their class will not be constructors in a future version …
28 Deprecated: Methods with the same name as their class will not be constructors in a future version …
30 Deprecated: Methods with the same name as their class will not be constructors in a future version …
32 Deprecated: Methods with the same name as their class will not be constructors in a future version …
H A Derrmsg_035.phpt2 errmsg: cannot use 'self' as interface name
12 Fatal error: Cannot use 'self' as interface name as it is reserved in %s on line %d
H A Derrmsg_036.phpt2 errmsg: cannot use 'parent' as interface name
12 Fatal error: Cannot use 'parent' as interface name as it is reserved in %s on line %d
H A Derrmsg_030.phpt2 errmsg: cannot use 'self' as parent class name
12 Fatal error: Cannot use 'self' as class name as it is reserved in %s on line %d
H A Derrmsg_031.phpt2 errmsg: cannot use 'parent' as parent class name
12 Fatal error: Cannot use 'parent' as class name as it is reserved in %s on line %d
H A Dspecial_name_error2.phpt2 Cannot use special class name as alias
10 Fatal error: Cannot use Foo\Bar as self because 'self' is a special class name in %s on line %d
H A Dclass_alias_004.phpt2 Testing creation of alias using an existing interface name
15 Warning: Cannot declare class test, because the name is already in use in %s on line %d
H A Dclass_alias_010.phpt2 Trying use an existing alias name in class declaration
14 Warning: Cannot declare interface b, because the name is already in use in %s on line %d
/PHP-7.2/ext/reflection/tests/
H A DReflectionProperty_basic2.phpt49 ["name"]=>
65 ["name"]=>
81 ["name"]=>
99 ["name"]=>
/PHP-7.2/ext/simplexml/tests/
H A Dsxe_003.phpt40 foreach($sxe->getChildren() as $name => $data) {
41 var_dump($name);
52 foreach($sxe->getChildren() as $name => $data) {
53 var_dump($name);
/PHP-7.2/ext/dom/tests/
H A DDOMDocumentType_basic_001.phpt10 // Access publicId, systemId, name, internalSubset all with values.
19 print "name: ".$doctype->name."\n";
45 name: chapter
/PHP-7.2/ext/soap/tests/schema/
H A Dschema035.phpt9 <element name="testType2">
12 <element name="int" type="int"/>
16 <complexType name="testType">
18 <element name="int" type="int"/>
/PHP-7.2/ext/xmlreader/examples/
H A Dxmlreader_string.php17 print "Node Name: ".$reader->name."\n";
23 print " Attribute Name: ".$reader->name."\n";
/PHP-7.2/sapi/fpm/tests/
H A Dstatus.inc91 foreach ($fields as $name => $value) {
93 $name = call_user_func($nameTransformer, $name);
99 $pattern .= sprintf($rowPattern, $name, $value, $name);
101 $pattern .= sprintf($rowPattern, $name, $value);
165 function ($name) {
166 return str_replace(' ', '-', $name);
/PHP-7.2/tests/classes/
H A Dautoload_010.phpt5 spl_autoload_register(function ($name) {
7 var_dump($name);
H A Dautoload_011.phpt5 spl_autoload_register(function ($name) {
7 var_dump($name);
H A Dinheritance_007.phpt21 Deprecated: Methods with the same name as their class will not be constructors in a future version …
25 ["name"]=>
32 ["name"]=>
/PHP-7.2/ext/phar/tests/files/
H A Dopenssl.cnf15 stateOrProvinceName = State or Province Name (full name)
21 commonName = Common Name (eg, YOUR name)
30 unstructuredName = An optional company name
/PHP-7.2/ext/standard/tests/filters/
H A D001.phpt16 Warning: stream_filter_register(): Filter name cannot be empty in %s on line %d
19 Warning: stream_filter_register(): Class name cannot be empty in %s on line %d
22 Warning: stream_filter_register(): Filter name cannot be empty in %s on line %d
/PHP-7.2/ext/wddx/
H A Dwddx.c608 if (name) { in php_wddx_serialize_var()
668 if (name) { in php_wddx_serialize_var()
727 if (!strcmp((char *)name, EL_PACKET)) { in php_wddx_push_element()
747 } else if (!strcmp((char *)name, EL_CHAR)) { in php_wddx_push_element()
799 } else if (!strcmp((char *)name, EL_VAR)) { in php_wddx_push_element()
892 if (!strcmp((char *)name, EL_STRING) || !strcmp((char *)name, EL_NUMBER) || in php_wddx_pop_element()
893 !strcmp((char *)name, EL_BOOLEAN) || !strcmp((char *)name, EL_NULL) || in php_wddx_pop_element()
894 !strcmp((char *)name, EL_ARRAY) || !strcmp((char *)name, EL_STRUCT) || in php_wddx_pop_element()
895 !strcmp((char *)name, EL_RECORDSET) || !strcmp((char *)name, EL_BINARY) || in php_wddx_pop_element()
896 !strcmp((char *)name, EL_DATETIME)) { in php_wddx_pop_element()
[all …]
/PHP-7.2/ext/standard/tests/file/
H A Dcopy_variation3-win32.phpt30 "copy variation3.tmp", //file name containing blank space
31 " copy_variation3.tmp", //file name starts with blank space
33 " ", //blank space as file name
54 echo "Destination file name => ";
85 Destination file name => copy variation3.tmp
92 Destination file name => copy_variation3.tmp
/PHP-7.2/main/streams/
H A Dtransports.c52 PHPAPI php_stream *_php_stream_xport_create(const char *name, size_t namelen, int options, in _php_stream_xport_create() argument
96 for (p = name; isalnum((int)*p) || *p == '+' || *p == '-' || *p == '.'; p++) { in _php_stream_xport_create()
101 protocol = name; in _php_stream_xport_create()
102 name = p + 3; in _php_stream_xport_create()
134 (char*)name, namelen, persistent_id, options, flags, timeout, in _php_stream_xport_create()
144 if (-1 == php_stream_xport_connect(stream, name, namelen, in _php_stream_xport_create()
157 if (0 != php_stream_xport_bind(stream, name, namelen, &error_text)) { in _php_stream_xport_create()
198 const char *name, size_t namelen, in php_stream_xport_bind() argument
207 param.inputs.name = (char*)name; in php_stream_xport_bind()
226 const char *name, size_t namelen, in php_stream_xport_connect() argument
[all …]

Completed in 48 milliseconds

1...<<11121314151617181920>>...76