Home
last modified time | relevance | path

Searched refs:name (Results 176 – 200 of 1814) sorted by relevance

12345678910>>...73

/PHP-7.0/ext/phar/tests/zip/
H A Dbug48791.phpt14name="OpenSymbol" svg:font-family="OpenSymbol"/><style:font-face style:name="Tahoma1" svg:font-fam…
/PHP-7.0/ext/standard/tests/file/
H A Dtempnam_variation8-win32.phpt13 Description: Create file with unique file name.
52 echo "File name is => ";
93 File name is => %s\tempnam_variation2\tempnam_variation2_sub\t%s
98 File name is => %s\tempnam_variation2\t%s
103 File name is => %s\tempnam_variation2\t%s
108 File name is => %s\tempnam_variation2\t%s
113 File name is => %s\tempnam_variation2\t%s
118 File name is => %s\t%s
123 File name is => %s\t%s
128 File name is => %s\tempnam_variation2\tempnam_variation2_sub\t%s
[all …]
H A Drename_variation3-win32.phpt22 /* test rename() by trying to rename an existing file/dir to the same name
32 echo "\n-- Renaming file to same file name --\n";
36 echo "\n-- Renaming directory to same directory name --\n";
40 echo "\n-- Renaming existing file to existing directory name --\n";
45 echo "\n-- Renaming existing directory to existing file name --\n";
64 -- Renaming file to same file name --
68 -- Renaming directory to same directory name --
72 -- Renaming existing file to existing directory name --
79 -- Renaming existing directory to existing file name --
/PHP-7.0/ext/reflection/tests/
H A Dbug30209.phpt8 private $name = 'testBAR';
15 var_dump($this->name);
16 $method = $class->getMethod($this->name);
17 var_dump($this->name);
H A DReflectionClass_constructor_001.phpt12 //Return the name of another class
23 ["name"]=>
27 ["name"]=>
31 ["name"]=>
H A DReflectionObject_constructor_error.phpt17 ["name"]=>
23 ["name"]=>
29 ["name"]=>
35 ["name"]=>
41 ["name"]=>
47 ["name"]=>
/PHP-7.0/ext/simplexml/tests/
H A D016a.phpt9 <person name="Foo"></person>
14 var_dump($people->person['name']);
15 $people->person['name'] .= 'Bar';
16 var_dump($people->person['name']);
/PHP-7.0/ext/hash/tests/
H A Dmhash_002.phpt37 foreach ($supported_hash_al as $name => $len) {
38 if (array_key_exists($name, $known_hash_al)) {
39 $len = mhash_get_block_size($known_hash_al[$name]);
40 echo "$name = $len\n";
42 echo "$name ? $len\n";
/PHP-7.0/ext/xmlreader/tests/
H A D003.phpt24 echo $reader->name . ": ";
27 if ($reader->getAttribute($reader->name) == $reader->value) {
33 echo $reader->name . ": ";
36 if ($reader->getAttribute($reader->name) == $reader->value) {
42 echo $reader->name . ": ";
50 echo $reader->name . ": ";
59 echo $reader->name . ": ";
67 echo $reader->name . ": ";
/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_env.c26 int setenv(char *name, char *value, int clobber) /* {{{ */ in setenv() argument
32 if (clobber == 0 && getenv(name) != 0) { in setenv()
36 if ((cp = malloc(strlen(name) + strlen(value) + 2)) == 0) { in setenv()
39 sprintf(cp, "%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()
88 void unsetenv(const char *name) /* {{{ */ in unsetenv() argument
90 if(getenv(name) != NULL) { in unsetenv()
95 if (nvmatch(name, environ[ct]) != 0) del=ct; /* <--- WTF?! */ in unsetenv()
[all …]
/PHP-7.0/ext/pdo/tests/
H A Dpdo.inc3 function set_sql($name, $query)
5 if (empty($GLOBALS['SQL'][$name]))
7 $GLOBALS['SQL'][$name] = $query;
/PHP-7.0/Zend/tests/
H A Dbug75420.9.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
13 $name = "foo";
14 var_dump($obj[$name] ?? 12);
15 var_dump($name);
H A Dbug75420.11.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
13 $name = "foo";
14 var_dump(empty($obj[$name]));
15 var_dump($name);
H A Dbug62907.phpt5 function __autoload($name) {
6 if ($name == "B") {
8 } else if ($name == "A") {
10 } else if ($name == "T") {
/PHP-7.0/ext/reflection/
H A Dphp_reflection.c48 ZVAL_STRINGL(&member, name, sizeof(name)-1); \
1202 zval name; in zend_reflection_class_factory() local
1204 ZVAL_STR_COPY(&name, ce->name); in zend_reflection_class_factory()
1218 zval name; in reflection_extension_factory() local
1233 ZVAL_STRINGL(&name, module->name, name_len); in reflection_extension_factory()
1253 ZVAL_STR_COPY(&name, arg_info->name); in reflection_parameter_factory()
2517 ZVAL_STR_COPY(&name, arg_info[position].name); in ZEND_METHOD()
3114 ZVAL_STR_COPY(&name, mptr->common.scope->name); in ZEND_METHOD()
5598 ZVAL_STRING(&name, module->name); in ZEND_METHOD()
5767 name = ce->name; in add_extension_class()
[all …]
/PHP-7.0/ext/soap/tests/
H A Dclassmap004.phpt14 function __get($name) {
15 return @$this->a[$name];
17 function __set($name, $val) {
18 $this->a[$name] = $val;
20 function __unset($name) {
21 unset($this->a[$name]);
/PHP-7.0/ext/xml/tests/
H A Dxml_set_notation_decl_handler_basic.phpt23 echo "...Entity name=" . $entity_name . "\n";
27 echo "...Notation name=" . $notation_name . "\n";
30 function notation_decl_handler($parser, $name, $base, $system_ID,$public_ID)
33 echo "...Name=" . $name . "\n";
85 ...Entity name=testUS
89 ...Notation name=USDATE
91 ...Entity name=testAUS
95 ...Notation name=AUSDATE
97 ...Entity name=testISO
101 ...Notation name=ISODATE
/PHP-7.0/ext/session/tests/
H A Drfc1867_disabled.phpt9 session.name=PHPSESSID
16 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 [%u|b%"name"]=>
66 [%u|b%"name"]=>
H A Drfc1867_disabled_2.phpt9 session.name=PHPSESSID
16 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 [%u|b%"name"]=>
66 [%u|b%"name"]=>
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_print.c68 ZSTR_VAL(method->common.scope->name), in phpdbg_print_function_helper()
162 ZSTR_VAL(ce->name), in PHPDBG_PRINT()
189 zend_string *lcname = zend_string_alloc(strlen(param->method.name), 0); in PHPDBG_PRINT()
289 phpdbg_out("function name: %s::%s (internal)\n", ce->name->val, function); in phpdbg_print_opcodes_method_ce()
297 phpdbg_out("function name: %s::%s\n", ce->name->val, function); in phpdbg_print_opcodes_method_ce()
308 …if (ce->name->len == strlen(class) && !zend_binary_strcasecmp(class, strlen(class), ce->name->val,… in phpdbg_print_opcodes_method()
333 ZSTR_VAL(ce->name)); in phpdbg_print_opcodes_ce()
366 …if (ce->name->len == strlen(class) && !zend_binary_strcasecmp(class, strlen(class), ce->name->val,… in phpdbg_print_opcodes_class()
384 zend_string *name; in phpdbg_print_opcodes() local
390 ZEND_HASH_FOREACH_STR_KEY_PTR(EG(function_table), name, func) { in phpdbg_print_opcodes()
[all …]
/PHP-7.0/ext/soap/tests/schema/
H A Dtest_schema.inc12 <definitions name="InteropTest"
28 <message name="testMessage">
29 <part name="testParam" $type/>
31 <portType name="testPortType">
32 <operation name="test">
36 <binding name="testBinding" type="testPortType">
38 <operation name="test">
45 <service name="testService">
46 <port name="testPort" binding="tns:testBinding">
/PHP-7.0/ext/wddx/tests/
H A Dbug72340.phpt13 <array><var name="XXXXXXXX"><boolean value="none">TEST</boolean></var>
14 <var name="YYYYYYYY"><var name="ZZZZZZZZ"><var name="EZEZEZEZ">
/PHP-7.0/ext/spl/tests/
H A Dbug71202.phpt6 function inner_autoload ($name){
7 if ($name == 'A') {
22 spl_autoload_register(function ($name) {
23 if ($name == 'A') {
/PHP-7.0/ext/intl/tests/
H A Dlocale_compose_locale.phpt139 Input Array name is : loc1
143 Input Array name is : loc2
147 Input Array name is : loc3
151 Input Array name is : loc4
155 Input Array name is : loc5
159 Input Array name is : loc6
163 Input Array name is : loc7
167 Input Array name is : loc8
171 Input Array name is : loc9
176 Input Array name is : loc10
[all …]
/PHP-7.0/scripts/dev/generate-phpt/src/texts/
H A DmethodNotSpecified.txt2 You have given a class name but not supplied a method name to test.
3 The method name is required.

Completed in 83 milliseconds

12345678910>>...73