Searched refs:as (Results 176 – 200 of 4273) sorted by relevance
12345678910>>...171
/PHP-7.1/ext/spl/examples/ |
H A D | keyfilter.inc | 17 * 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.1/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_prefetch_2.phpt | 16 $s = $dbh->prepare("select '' as myempty, null as mynull from dual", array(PDO::ATTR_PREFETCH => 10… 29 $s = $dbh->prepare("select '' as myempty, null as mynull from dual", array(PDO::ATTR_PREFETCH => 0)…
|
/PHP-7.1/ext/pdo_pgsql/tests/ |
H A D | bug64953.phpt | 20 $st = $pdo->prepare('SELECT ?::char as i'); 26 $st = $pdo->prepare('SELECT (?)::char as i'); 33 $st = $pdo->prepare("SELECT :int::int as i"); 37 $st = $pdo->prepare("SELECT '''?'''::text as \":text\"");
|
/PHP-7.1/ext/zlib/tests/ |
H A D | gzfile_variation9.phpt | 21 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 D | gzfile_variation12.phpt | 22 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.1/ext/intl/tests/ |
H A D | msgfmt_format_subpatterns_named.phpt | 26 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.1/ext/standard/tests/array/ |
H A D | shuffle_variation5.phpt | 45 // 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 D | bug54459.phpt | 7 foreach (range(90, 100, .1) as $i => $v){ 10 foreach (range("90", "100", .1) as $i => $v){
|
H A D | bug21918.phpt | 9 foreach($a as $k => $v) { 18 foreach($b as $k => $v) { 26 foreach($c as $k => $v) {
|
/PHP-7.1/ext/standard/tests/strings/ |
H A D | sha1_file.phpt | 43 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 D | sprintf_variation19.phpt | 21 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 D | sprintf_variation21.phpt | 21 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.1/ext/mysqli/tests/ |
H A D | reflection_tools.inc | 23 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.1/Zend/tests/ |
H A D | this_as_global.phpt | 2 $this as global variable 12 Fatal error: Cannot use $this as global variable in %sthis_as_global.php on line 3
|
H A D | this_as_static.phpt | 2 $this as static variable 12 Fatal error: Cannot use $this as static variable in %sthis_as_static.php on line 3
|
H A D | bug39017.phpt | 2 Bug #39017 (foreach(($obj = new myClass) as $v); echo $obj; segfaults) 6 foreach(($a=(object)new A()) as $v);
|
H A D | bug67111.phpt | 9 foreach ($array1 as $x) { 10 foreach ($array2 as $y) {
|
H A D | bug35106.phpt | 7 foreach($a as $i){ 9 foreach($a as $p);
|
/PHP-7.1/ext/standard/tests/file/ |
H A D | bug66509.phpt | 2 Bug #66509 (copy() showing $context parameter as required) 8 foreach($r->getParameters() as $p) {
|
/PHP-7.1/Zend/tests/try/ |
H A D | try_finally_021.phpt | 6 foreach ([0] as $_) { 7 foreach ($array as $v) {
|
/PHP-7.1/ext/spl/tests/ |
H A D | bug68128.phpt | 9 foreach ($regex as $match) { 17 foreach ($rRegexIterator as $key1 => $value1) { 23 foreach ($rRegexIterator->getChildren() as $key => $value) {
|
H A D | iterator_011.phpt | 8 foreach(new LimitIterator(new InfiniteIterator(new EmptyIterator()), 0, 3) as $key=>$val) 18 foreach($it as $val=>$key) 29 foreach($it as $val=>$key)
|
H A D | iterator_018.phpt | 8 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.1/tests/classes/ |
H A D | visibility_005.phpt | 14 foreach($this as $k=>$v) { 29 foreach($o as $k=>$v) { 38 foreach($o as $k=>$v) {
|
/PHP-7.1/tests/lang/ |
H A D | bug29893.phpt | 2 Bug #29893 (segfault when using array as index) 10 Warning: Cannot use a scalar value as an array in %sbug29893.php on line %d
|
Completed in 29 milliseconds
12345678910>>...171