Home
last modified time | relevance | path

Searched refs:as (Results 176 – 200 of 4164) sorted by relevance

12345678910>>...167

/PHP-7.2/ext/simplexml/tests/
H A D006.phpt36 foreach($sxe as $name => $data) {
43 foreach(clone $sxe as $name => $data) {
50 foreach($sxe->elem11 as $name => $data) {
57 foreach($sxe->elem1 as $name => $data) {
H A D019.phpt36 foreach($sxe->children() as $name => $data) {
43 foreach(clone $sxe->children() as $name => $data) {
50 foreach($sxe->elem11->children() as $name => $data) {
57 foreach($sxe->elem1->children() as $name => $data) {
/PHP-7.2/ext/spl/tests/
H A Darray_013.phpt16 foreach($it as $key => $val)
26 foreach(new NoRewindIterator($it) as $key => $val)
45 foreach($it as $key => $val)
55 foreach(new NoRewindIterator($it) as $key => $val)
H A Dpqueue_001.phpt18 foreach ($pq as $k=>$v) {
31 foreach ($pq1 as $k=>$v) {
44 foreach ($pq2 as $k=>$v) {
57 foreach ($pq3 as $k=>$v) {
H A Dbug68128.phpt9 foreach ($regex as $match) {
17 foreach ($rRegexIterator as $key1 => $value1) {
23 foreach ($rRegexIterator->getChildren() as $key => $value) {
H A Diterator_011.phpt8 foreach(new LimitIterator(new InfiniteIterator(new EmptyIterator()), 0, 3) as $key=>$val)
18 foreach($it as $val=>$key)
29 foreach($it as $val=>$key)
/PHP-7.2/ext/standard/tests/general_functions/
H A Dintval_binary_prefix.phpt36 foreach ($goodInputs as $input) {
44 foreach ($goodInputs as $input) {
52 foreach ($goodInputs as $input) {
60 foreach ($badInputs as $input) {
/PHP-7.2/ext/spl/examples/
H A Dkeyfilter.inc17 * Instances of this class act as a filter around iterators whose elements
24 /** @internal regular exoression used as filter */
33 * @param regex Regular expression used as a filter.
48 /** @return regular expression used as filter
/PHP-7.2/ext/zlib/tests/
H A Dgzfile_variation9.phpt21 foreach ( $variation as $var ) {
41 string(19) "as it turns around
61 string(19) "as it turns around
81 string(19) "as it turns around
101 string(19) "as it turns around
H A Dgzfile_variation12.phpt22 foreach ( $variation as $var ) {
42 string(19) "as it turns around
62 string(19) "as it turns around
82 string(19) "as it turns around
102 string(19) "as it turns around
/PHP-7.2/ext/standard/tests/array/
H A Dshuffle_variation5.phpt45 // defining array with values as heredoc strings
55 // defining array with keys as heredoc strings
65 // test shuffle() with array containing heredoc strings as values
71 // test shuffle() with array containing heredoc strings as its keys
72 echo "\n-- with array having heredoc strings as keys --\n";
101 -- with array having heredoc strings as keys --
H A Dbug54459.phpt7 foreach (range(90, 100, .1) as $i => $v){
10 foreach (range("90", "100", .1) as $i => $v){
H A Dbug21918.phpt9 foreach($a as $k => $v) {
18 foreach($b as $k => $v) {
26 foreach($c as $k => $v) {
/PHP-7.2/ext/intl/tests/
H A Dmsgfmt_format_subpatterns_named.phpt26 other {{host} invites {guest} as one of the # people invited to her party.}}}
31 other {{host} invites {guest} as one of the # people invited to his party.}}}
36 other {{host} invites {guest} as one of the # people invited to their party.}}}}
54 foreach ($args as $arg) {
74 'Alice invites Bob as one of the 26 people invited to her party.'
75 'Alice invites Bob as one of the 26 people invited to her party.'
/PHP-7.2/ext/standard/tests/strings/
H A Dsha1_file.phpt43 echo "\n-- Scalar value as filename --\n";
46 echo "\n-- NULL as filename --\n";
55 echo "\n-- Hexadecimal Output for Empty file as Argument --\n";
58 echo "\n-- Raw Binary Output for Empty file as Argument --\n";
88 -- Scalar value as filename --
93 -- NULL as filename --
108 -- Hexadecimal Output for Empty file as Argument --
111 -- Raw Binary Output for Empty file as Argument --
H A Dsprintf_variation19.phpt21 0x123B, // integer as hexadecimal
25 -0x80000000, // max negative integer as hexadecimal
26 0x7fffffff, // max positive integer as hexadecimal
27 0x7FFFFFFF, // max positive integer as hexadecimal
28 0123, // integer as octal
30 -020000000000, // max negative integer as octal
31 017777777777 // max positive integer as octal
43 foreach($integer_values as $integer_value) {
46 foreach($string_formats as $format) {
H A Dsprintf_variation21.phpt21 0x123B, // integer as hexadecimal
25 -0x80000000, // max negative integer as hexadecimal
26 0x7fffffff, // max positive integer as hexadecimal
27 0x7FFFFFFF, // max positive integer as hexadecimal
28 0123, // integer as octal
30 -020000000000, // max negative integer as octal
31 017777777777 // max positive integer as octal
43 foreach($integer_values as $integer_value) {
46 foreach($char_formats as $format) {
/PHP-7.2/ext/mysqli/tests/
H A Dreflection_tools.inc23 foreach ($methods as $method)
27 foreach ($tmp as $method)
33 foreach ($properties as $prop)
36 foreach ($tmp as $prop)
43 foreach ($properties as $name => $v)
49 foreach ($properties as $name => $v)
55 foreach ($constant as $name => $value)
94 foreach ($params as $k => $param)
98 foreach ($tmp as $param)
/PHP-7.2/Zend/tests/
H A Dthis_as_global.phpt2 $this as global variable
12 Fatal error: Cannot use $this as global variable in %sthis_as_global.php on line 3
H A Dthis_as_static.phpt2 $this as static variable
12 Fatal error: Cannot use $this as static variable in %sthis_as_static.php on line 3
H A Dbug39017.phpt2 Bug #39017 (foreach(($obj = new myClass) as $v); echo $obj; segfaults)
6 foreach(($a=(object)new A()) as $v);
H A Dbug67111.phpt9 foreach ($array1 as $x) {
10 foreach ($array2 as $y) {
H A Dbug35106.phpt7 foreach($a as $i){
9 foreach($a as $p);
/PHP-7.2/ext/standard/tests/file/
H A Dbug66509.phpt2 Bug #66509 (copy() showing $context parameter as required)
8 foreach($r->getParameters() as $p) {
/PHP-7.2/Zend/tests/try/
H A Dtry_finally_021.phpt6 foreach ([0] as $_) {
7 foreach ($array as $v) {

Completed in 26 milliseconds

12345678910>>...167