Home
last modified time | relevance | path

Searched refs:as (Results 26 – 50 of 3116) sorted by relevance

12345678910>>...125

/PHP-7.4/ext/standard/tests/general_functions/
H A Dvar_export_basic1_32.phpt27 '0x123B' => 0x123B, // integer as hexadecimal
31 "-0x80000000" => -0x7FFFFFFF - 1, // max negative integer as hexadecimal
32 "'0x7fffffff'" => '0x7fffffff', // max positive integer as hexadecimal
33 "0x7FFFFFFF" => 0x7FFFFFFF, // max positive integer as hexadecimal
34 "'0123'" => '0123', // integer as octal
36 "-020000000000" => -017777777777 - 1, // max negative integer as octal
37 "017777777777" => 017777777777, // max positive integer as octal
42 foreach($valid_ints as $key => $int_value) {
/PHP-7.4/ext/standard/tests/array/
H A Dend_variation2.phpt14 * as $array_arg argument.
21 echo "\n-- Pass a two-dimensional array as \$array_arg --\n";
24 echo "\n-- Pass a sub-array as \$array_arg --\n";
31 -- Pass a two-dimensional array as $array_arg --
41 -- Pass a sub-array as $array_arg --
H A Dnext_variation2.phpt14 * as $array_arg argument.
21 echo "\n-- Pass a two-dimensional array as \$array_arg --\n";
25 echo "\n-- Pass a sub-array as \$array_arg --\n";
32 -- Pass a two-dimensional array as $array_arg --
43 -- Pass a sub-array as $array_arg --
/PHP-7.4/ext/spl/tests/
H A Diterator_013.phpt10 foreach($it as $key=>$val)
19 foreach($it as $key=>$val)
26 foreach($it as $key=>$val)
35 foreach(new NoRewindIterator($it) as $key=>$val)
42 foreach($it as $key=>$val)
H A Diterator_028.phpt12 foreach($it as $v) echo $it->getDepth() . ": $v\n";
17 foreach($it as $v) echo $it->getDepth() . ": $v\n";
22 foreach($it as $v) echo $it->getDepth() . ": $v\n";
27 foreach($it as $v) echo $it->getDepth() . ": $v\n";
32 foreach($it as $v) echo $it->getDepth() . ": $v\n";
37 foreach($it as $v) echo $it->getDepth() . ": $v\n";
/PHP-7.4/ext/standard/tests/strings/
H A Dstrrchr_variation11.phpt95 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
99 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
103 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
107 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
111 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
115 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
119 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
123 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
127 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
151 Deprecated: strrchr(): Non-string needles will be interpreted as strings in %s on line %d
[all …]
H A Dstrripos_variation1.phpt62 $haystack //haystack as needle
67 foreach ($needles as $needle) {
136 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
139 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
142 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
145 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
149 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
152 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
155 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
158 Deprecated: strripos(): Non-string needles will be interpreted as strings in %s on line %d
[all …]
H A Dstrrpos_variation10.phpt98 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
102 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
106 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
110 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
114 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
118 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
122 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
126 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
130 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
154 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
[all …]
H A Dchop_variation5.phpt18 var_dump ( chop("chop test ", NULL) ); /* with NULL as second Argument */
19 …var_dump ( chop("chop test ", true) ); /* with boolean value as second Argu…
20 …var_dump ( chop("chop test ", " ") ); /* with single space as second Argum…
21 …var_dump ( chop("chop test \t\n\r\0\x0B", "\t\n\r\0\x0B") ); /* with multiple escape sequences as
22 …var_dump ( chop("chop testABCXYZ", "A..Z") ); /* with characters range as second A…
23 …var_dump ( chop("chop test0123456789", "0..9") ); /* with numbers range as second Argu…
24 …var_dump ( chop("chop test$#@", "#@$") ); /* with some special characters as s…
/PHP-7.4/Zend/tests/traits/
H A Dbug61998.phpt7 func as newFunc;
32 func as newFunc;
33 func as func2;
36 func2 as newFunc2;
37 func2 as newFunc3;
38 func2 as func3;
/PHP-7.4/tests/lang/
H A DforeachLoop.001.phpt8 foreach ($a as $v) {
11 foreach ($a as $k => $v) {
19 foreach (array("d","e","f") as $v) {
22 foreach (array("d","e","f") as $k => $v) {
31 foreach ($a as $v);
34 foreach ($a as &$v);
H A DforeachLoop.003.phpt7 foreach ($a as $v) {
12 foreach ($a as $v) {
17 foreach ($a as $v) {
22 foreach ($a as $v) {
27 foreach ($a as $v) {
H A Dbug27439.phpt29 foreach ($this->array as $foo) {
35 foreach ($this->foobar as $foo);
39 foreach ($this->string as $foo);
43 foreach ($this->getArray() as $foo);
47 foreach ($this->getString() as $foo);
51 foreach ($this->object as $foo) {
/PHP-7.4/ext/date/tests/
H A Dstrtotime_basic.phpt8 * The term "Monday December 2008" will be parsed as the first Monday in December 2008.
12 * This is parsed as the "first following Monday OR the current day if it is a Monday"
16 * This is parsed as the "second following Monday OR the first following
21 * This is parsed as the "third following Monday OR the second following
26 * This is parsed as the "first following Monday after the first Monday in December"
30 * This is parsed as the "second following Monday after the first Monday in December"
34 * This is parsed as the "third following Monday after the first Monday in December"
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug54929.phpt29 testQuery("/* ' */ select ? as f1 /* ' */");
30 testQuery("/* '-- */ select ? as f1 /* *' */");
31 testQuery("/* ' */ select ? as f1 --';");
32 testQuery("/* ' */ select ? as f1 -- 'a;");
33 testQuery("/*'**/ select ? as f1 /* ' */");
34 testQuery("/*'***/ select ? as f1 /* ' */");
37 **/ select ? as f1 /* ' */");
/PHP-7.4/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 Derrmsg_028.phpt2 errmsg: cannot use 'self' as class name
12 Fatal error: Cannot use 'self' as class name as it is reserved in %s on line %d
H A Derrmsg_029.phpt2 errmsg: cannot use 'parent' as class name
12 Fatal error: Cannot use 'parent' as class name as it is reserved in %s on line %d
/PHP-7.4/ext/gd/tests/
H A Dbug67248.phpt15 Warning: imageaffinematrixget(): Array expected as options in %s on line %d
17 Warning: imageaffinematrixget(): Array expected as options in %s on line %d
19 Warning: imageaffinematrixget(): Number is expected as option in %s on line %d
21 Warning: imageaffinematrixget(): Number is expected as option in %s on line %d
23 Warning: imageaffinematrixget(): Number is expected as option in %s on line %d
/PHP-7.4/ext/pdo_firebird/tests/
H A Ddialect_1.phpt20 1 as N,
21 2.0 as F,
22 cast(0.76 as numeric(15, 2)) as K,
23 cast(\'2019-06-12\' as date) as DT
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug75402.phpt50 ID as \"sID\",
51 GROUP_ID as \"sGroupID\",
52 SUBMITTER as \"sOwner\",
53 OPERATION as \"sOperation\",
54 DESCRIPTION as \"sInfo\",
55 STAGE as \"sShortStatus\",
56 STATUS as \"sStatus\",
57 PROGRESS as \"sProgress\",
58 HIDDEN as \"bHidden\",
59 to_char(INSERT_DATETIME, 'IYYY.MM.DD HH24:MI:SS') as \"sDatetime\"
/PHP-7.4/Zend/tests/type_declarations/
H A Dscalar_reserved2.phpt2 Scalar type names cannot be used as class, trait or interface names (2)
8 Fatal error: Cannot use 'int' as class name as it is reserved in %s on line %d
H A Dscalar_reserved6.phpt2 Scalar type names cannot be used as class, trait or interface names (6)
8 Fatal error: Cannot use 'bool' as class name as it is reserved in %s on line %d
H A Dscalar_reserved3.phpt2 Scalar type names cannot be used as class, trait or interface names (3)
8 Fatal error: Cannot use 'float' as class name as it is reserved in %s on line %d
H A Dscalar_reserved4.phpt2 Scalar type names cannot be used as class, trait or interface names (4)
8 Fatal error: Cannot use 'string' as class name as it is reserved in %s on line %d

Completed in 32 milliseconds

12345678910>>...125