Home
last modified time | relevance | path

Searched refs:k (Results 51 – 75 of 303) sorted by relevance

12345678910>>...13

/PHP-5.4/ext/phar/tests/
H A Dphar_oo_009.phpt20 foreach($f as $k => $v)
22 echo "$k=>$v\n";
30 foreach($f as $k => $v)
32 echo "$k=>" . join('|', $v) . "\n";
/PHP-5.4/ext/spl/tests/
H A Darray_011.phpt7 //foreach (new ArrayIterator($a) as $k => $v)
8 foreach (new LimitIterator(new ArrayIterator($a), 1, 3) as $k => $v)
10 var_dump(array($k, $v));
H A Dspl_recursive_iterator_iterator_key_case.phpt11 foreach($it as $k=>$v)
13 echo "$k=>$v\n";
14 var_dump($k);
H A Dfixedarray_003.phpt36 foreach ($a as $k => $v) {
37 echo "$k => $v\n";
46 foreach ($a as $k => $v) {
47 echo "$k => $v\n";
H A Diterator_031.phpt17 foreach($it as $k=>$v)
19 echo "$k=>$v\n";
79 foreach($ap as $k=>$v)
81 echo "$k=>$v\n";
/PHP-5.4/tests/basic/
H A D023.phpt7 c o o k i e=value; c o o k i e= v a l u e ;;c%20o+o k+i%20e=v;name="value","value",UEhQIQ==;UEhQIQ=…
/PHP-5.4/ext/standard/tests/array/
H A Dbug12776.phpt14 $arr=array('k'=>'v');
23 val: v; key: k
24 First value: k
H A Dbug24766.phpt11 $k = array_keys($a);
13 debug_zval_dump($k, $l);
14 $i=$k[0];
/PHP-5.4/tests/lang/
H A DforeachLoop.005.phpt6 foreach ($a as $k=>&$v){
7 $a[$k] = "changed.$k";
8 echo "After changing \$a directly, \$v@$k is: $v\n";
H A DforeachLoop.002.phpt8 foreach ($a as $k=>$v) {
9 $a[$k]="changed.$k";
16 foreach ($a as $k=>$v) {
17 $v="changed.$k";
24 foreach ($a as $k=>&$v) {
25 $v="changed.$k";
H A DforeachLoopIterator.001.phpt46 foreach ($f as $k=>$v) {
47 echo "$k => $v\n";
56 foreach ($f as $k=>$v) {
58 echo "$k => $v\n";
60 foreach ($f as $k=>$v) {
61 echo " $k => $v\n";
H A DforeachLoopIteratorAggregate.003.phpt60 foreach (new A1 as $k=>$v) {
61 echo "$k => $v\n";
65 foreach (new A2 as $k=>$v) {
66 echo "$k => $v\n";
70 foreach (new A3 as $k=>$v) {
71 echo "$k => $v\n";
H A DforeachLoop.004.phpt17 foreach($a as $k=>$v[0]) {
18 var_dump($k, $v);
21 var_dump($k, $v);
/PHP-5.4/ext/pdo_mysql/tests/
H A Dbug_50323.phpt23 foreach ($parts as $k => $v) {
30 foreach ($new_options as $k => $v)
31 $options[$k] = $v;
34 foreach ($options as $k => $v)
35 $dsn .= sprintf('%s=%s;', $k, $v);
/PHP-5.4/ext/mysqli/tests/
H A Dmysqli_character_set.phpt48 $k = $charset['Charset'];
57 printf("[006 + %s] [%d] %s\n", $k, mysqli_errno($link), mysqli_error($link));
61 printf("[007 + %s] %s [%d] %s\n", $k, $sql, mysqli_errno($link), mysqli_error($link));
66 printf("[008 + %s] [%d] %s\n", $k, mysqli_errno($link), mysqli_error($link));
75 printf("[009 + %s] [%d] %s\n", $k, mysqli_errno($link), mysqli_error($link));
81 printf("[010 + %s] [%d] %s\n", $k, mysqli_errno($link), mysqli_error($link));
86 printf("[011 + %s] [%d] %s\n", $k, mysqli_errno($link), mysqli_error($link));
89 printf("[012 + %s] Expecting %d, got %s, [%d] %s\n", $k,
94 printf("[013 + %s] Expecting %d, got %s, [%d] %s\n", $k,
H A Dmysqli_get_connection_stats.phpt32 foreach ($info as $k => &$v) {
33 if (strpos($k, "mem_") === 0) {
37 foreach ($info2 as $k => &$v) {
38 if (strpos($k, "mem_") === 0) {
52 foreach ($info as $k => &$v) {
53 if (strpos($k, "mem_") === 0) {
H A Dmysqli_stmt_bind_result_format.phpt125 $k,
164 foreach ($expected as $k => $v)
165 $expected[$k] = number_format(round($v), 0, '.', ',');
169 foreach ($expected as $k => $v)
170 $expected[$k] = number_format(round($v), 0, '.', ',');
174 foreach ($expected as $k => $v)
179 foreach ($expected as $k => $v)
184 foreach ($expected as $k => $v)
189 foreach ($expected as $k => $v)
194 foreach ($expected as $k => $v)
[all …]
H A Dbug42378.phpt133 while ((list($k, $v) = each($expected)) && mysqli_stmt_fetch($stmt)) {
138 $k,
162 foreach ($expected as $k => $v)
163 $expected[$k] = number_format(round($v), 0, '.', ',');
167 foreach ($expected as $k => $v)
168 $expected[$k] = number_format(round($v), 0, '.', ',');
172 foreach ($expected as $k => $v)
173 $expected[$k] = number_format(round($v), 0, '.', ',');
177 foreach ($expected as $k => $v)
178 $expected[$k] = number_format(round($v), 0, '.', ',');
/PHP-5.4/ext/mbstring/oniguruma/
H A Dregexec.c673 k--;\
699 k++;\
834 k--;\
849 k--;\
864 k--;\
879 k--;\
899 k--;\
939 k--;\
1120 k++; in make_capture_history_tree()
1151 k--; in backref_match_at_nested_level()
[all …]
/PHP-5.4/Zend/tests/
H A Dbug63635.phpt29 for ($k=0 ; $k<MAX ; $k++) {
/PHP-5.4/ext/fileinfo/libmagic/
H A Dreadcdf.c96 size_t j, k = 1; local
99 k++;
102 j++, s += k) {
297 size_t j, k; local
300 for (k = 0; k < sizeof(name); k++)
301 name[k] = (char)cdf_tole2(d->d_name[k]);
/PHP-5.4/ext/standard/tests/strings/
H A Dchunk_split_variation11.phpt22 sPeci@! ch@r$ :) & numbers 222.This is \k wrong escape char.
51 sPeci@! ch@r$ :) & numbers 222.This is \k wrong escape char."
55 s Peci@! ch@r$ :) & number s 222. This i s \k w rong e scape char. "
59 saPeci@!a ch@r$a :) & anumberas 222.aThis ias \k warong eascape achar.a"
63 sENDINGPeci@!ENDING ch@r$ENDING :) & ENDINGnumberENDINGs 222.ENDINGThis iENDINGs \k wENDINGrong eEN…
82 s \k w
90 s123Peci@!123 ch@r$123 :) & 123number123s 222.123This i123s \k w123rong e123scape 123char.123"
94 …i@! ch@r$(number)speci@! ch@r$(s 222.)speci@! ch@r$(This i)speci@! ch@r$(s \k w)speci@! ch@r$(rong…
/PHP-5.4/ext/intl/tests/
H A Dcollator_asort.phpt61 'a' => 'k' ),
102 '2' => 'k' ,
127 'a' => 'k' )
142 'a' => 'k',
215 2 => 'k',
241 'a' => 'k',
H A Dcollator_asort_variant2.phpt61 'a' => 'k' ),
102 '2' => 'k' ,
127 'a' => 'k' )
142 'a' => 'k',
215 2 => 'k',
241 'a' => 'k',
/PHP-5.4/ext/date/tests/
H A Dbug32086.phpt11 echo $k = strtotime("2004-11-02"), "\n";
16 echo date("Y-m-d H:i:s T\n", $k);
22 echo $k = strtotime("2005-02-20"), "\n";
27 echo date("Y-m-d H:i:s T\n", $k);

Completed in 43 milliseconds

12345678910>>...13