Home
last modified time | relevance | path

Searched refs:k (Results 26 – 50 of 320) sorted by last modified time

12345678910>>...13

/PHP-5.5/tests/lang/
H A DforeachLoopIteratorAggregate.001.phpt107 foreach ($f as $k=>$v) {
108 echo "$k => $v\n";
111 foreach ($f as $k=>$v) {
112 echo "$k => $v\n";
119 foreach ($f as $k=>$v) {
121 echo "$k => $v\n";
123 foreach ($f as $k=>$v) {
124 echo " $k => $v\n";
H A D022.phpt28 for ($k=0; $k<10; $k++) {
29 switchtest (0,$k);
H A D023.phpt208 $k should go from 0 to 2<br>
209 $k=0<br>
210 $k=1<br>
211 $k=2<br>
224 $k should go from 0 to 2<br>
225 $k=0<br>
226 $k=1<br>
227 $k=2<br>
241 $k=0<br>
242 $k=1<br>
[all …]
H A D024.phpt244 ${"test$i$j"}[$k] = $i+$j+$k;
350 echo " \$k=$k\n";
552 $k=0
553 $k=1
554 $k=2
568 $k=0
569 $k=1
570 $k=2
584 $k=0
585 $k=1
[all …]
/PHP-5.5/tests/func/
H A D003.phpt20 for ($k=$i; $k<=$j; $k++) {
21 echo "$k\n";
56 for ($k=0; $k<10; $k++) {
79 for ($k=0; $k<10; $k++) {
92 for ($k=$i ; $k<=$j ; $k++) {
93 if ($k >5) continue;
94 echo "$k\n";
/PHP-5.5/tests/classes/
H A Diterators_002.phpt62 foreach($t as $k => $v) {
H A Diterators_007.phpt23 foreach($t as $k => $v)
H A Dnew_001.phpt19 $k =& $f;
23 echo "Assigning new object directly to \$k affects \$f:\n";
24 $k = new Inc();
27 …echo "Assigning new object by ref to \$k removes it from \$f's reference set, so \$f is unchanged:…
28 $k =& new Inc();
39 Assigning new object directly to $k affects $f:
44 Assigning new object by ref to $k removes it from $f's reference set, so $f is unchanged:
/PHP-5.5/
H A Dserver-tests.php768 foreach ($this->exec_info as $k=>$v) {
769 $info .= sprintf("%-20.s: %s\n",$k,$v);
780 foreach ($this->conf as $k=>$v) {
1165 foreach ($section_text as $k=>$v) {
1168 $section_text[$k]=$matches[1];
1170 $section_text[$k]=trim($v);
1193 foreach ($settings as $k=>$v) {
1196 if ($k == 'include_path') {
1512 foreach ($want as $k=>$v) {
1513 $output .= "$k: {$headers[$k]}\n";
[all …]
H A Drun-tests.php1887 foreach($want as $k => $v) {
1889 if (isset($org_headers[$k])) {
1890 $headers = $org_headers[$k];
1891 $output_headers[] = $k . ': ' . $org_headers[$k];
1894 if (!isset($org_headers[$k]) || $org_headers[$k] != $v) {
H A Dphp.ini-development330 ;realpath_cache_size = 16k
H A Dphp.ini-production330 ;realpath_cache_size = 16k
H A Dltmain.sh4125 k=1
4126 output=$output_objdir/$output_la-${k}.$objext
4138 if test "$k" -eq 1 ; then
4146 last_robj=$output_objdir/$output_la-${k}.$objext
4147 k=`expr $k + 1`
4148 output=$output_objdir/$output_la-${k}.$objext
/PHP-5.5/scripts/dev/generate-phpt/src/texts/
H A Dhelp.txt2 …name> |-c <class_name> -m <method_name> -b|e|v [-s skipif:ini:clean:done] [-k win|notwin|64b|not64…
12 -k skipif key..................... Skipif option, only used if -s skipif is used.
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar10 …�a?ж������/���setup/exceptions/gtMissingArgumentException.phpO�����JO���´�k�������.���setup/exc…
257 …name> |-c <class_name> -m <method_name> -b|e|v [-s skipif:ini:clean:done] [-k win|notwin|64b|not64…
267 -k skipif key..................... Skipif option, only used if -s skipif is used.
436 'k',
707 if($commandLineOptions->hasOption('k')) {
708 $this->skipifKey = $commandLineOptions->getOption('k');
/PHP-5.5/sapi/fpm/
H A Dconfig.m4385 struct kevent k;
388 EV_SET(&k, 0, EVFILT_READ , EV_ADD | EV_CLEAR, 0, 0, NULL);
/PHP-5.5/sapi/fpm/fpm/events/
H A Dkqueue.c163 struct kevent k; in fpm_event_kqueue_add() local
170 EV_SET(&k, ev->fd, EVFILT_READ, flags, 0, 0, (void *)ev); in fpm_event_kqueue_add()
172 if (kevent(kfd, &k, 1, NULL, 0, NULL) < 0) { in fpm_event_kqueue_add()
188 struct kevent k; in fpm_event_kqueue_remove() local
195 EV_SET(&k, ev->fd, EVFILT_READ, flags, 0, 0, (void *)ev); in fpm_event_kqueue_remove()
197 if (kevent(kfd, &k, 1, NULL, 0, NULL) < 0) { in fpm_event_kqueue_remove()
/PHP-5.5/sapi/cli/tests/
H A Dphp_cli_server_004.phpt12 php_cli_server_start('foreach($_SERVER as $k=>$v) { if (!strncmp($k, "HTTP", 4)) var_dump( $k . ":"…
/PHP-5.5/sapi/caudium/
H A Dcaudium.c484 struct keypair *k; in low_sapi_caudium_register_variables() local
506 MY_MAPPING_LOOP(headers->u.mapping, i, k) { in low_sapi_caudium_register_variables()
507 ind = &k->ind; in low_sapi_caudium_register_variables()
508 val = &k->val; in low_sapi_caudium_register_variables()
/PHP-5.5/ext/zlib/tests/
H A Dbug_34821.phpt8 // test 50 bytes to 50k
/PHP-5.5/ext/xml/tests/
H A Dxml003.phpt18 while (list($k, $v) = each($attribs)) {
19 print " $k=\"$v\"";
H A Dxml001.phpt38 while (list($k, $v) = each($attribs)) {
39 print " $k=\"$v\"";
H A Dxml002.phpt18 while (list($k, $v) = each($attribs)) {
19 print " $k=\"$v\"";
H A Dxml004.phpt30 while (list($k, $v) = each($attribs)) {
31 print " $k=\"$v\"";
H A Dxml_closures_001.phpt13 while (list($k, $v) = each($attribs)) {
14 print " $k=\"$v\"";

Completed in 134 milliseconds

12345678910>>...13