Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 1091) sorted by last modified time

12345678910>>...44

/PHP-5.4/win32/
H A Dinstall.txt13 Apache 1.3.x on Microsoft Windows
14 Apache 2.0.x on Microsoft Windows
619 Apache 1.3.x on Microsoft Windows
670 AddType application/x-httpd-php .php
684 AddType application/x-httpd-php .php
713 Apache 2.0.x on Microsoft Windows
721 Apache 2.2.x Support: Users of Apache 2.2.x may use the
908 <Object name="x-httpd-php">
1313 $ mv extname-x.x.x extname
1399 HKEY_LOCAL_MACHINE\SOFTWARE\PHP\x\IniFilePath, where x, y and z
[all …]
H A Dparam.h15 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
16 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument
H A Dphp5dllts.dsp2426 mc -h $(InputDir)/.. -r $(InputDir) -x $(IntDir) $(InputPath)
/PHP-5.4/win32/build/
H A Dmkdist.php194 $x = stream_copy_to_stream($fp, $dest, $hdr['size']);
196 echo "Wrote $x bytes into $destfilename\n";
/PHP-5.4/tests/strings/
H A D002.phpt8 $x = fprintf($fp, "fprintf test 1:%.5s", "abcdefghij");
10 var_dump($x);
29 printf("printf test 16:%x\n", 170);
32 printf("printf test 19:%16x\n", 170);
35 printf("printf test 22:%016x\n", 170);
43 print("printf test 30:"); printf("%0\$s", 1); print("x\n");
82 printf test 30:x
H A Dbug22592.phpt7 $t = $x[] = 'x';
/PHP-5.4/tests/run-test/
H A Dtest002.phpt10 x
17 %x
/PHP-5.4/tests/lang/
H A DpassByReference_008.phpt5 function valRef($x, &$y) {
6 var_dump($x, $y);
7 $x = 'changed.x';
11 function refVal(&$x, $y) {
12 var_dump($x, $y);
13 $x = 'changed.x';
40 string(9) "changed.x"
H A DpassByReference_009.phpt5 function foo(&$x, &$y) { $x = 1; echo $y ; }
7 $x = 0;
8 foo($x, $x); // prints 1 ..
11 function foo2($x, &$y, $z)
13 echo $x; // 0
18 $x = 0;
20 foo2($x, $x, $x = 1);
21 echo $x; // 2
H A Dfunc_get_arg.005.phpt6 function refVal($x) {
9 var_dump($x);
H A Dfunc_get_args.004.phpt5 function valRef($x, &$y) {
6 var_dump($x, $y);
8 $x = 'changed.x';
13 function refVal(&$x, $y) {
14 var_dump($x, $y);
16 $x = 'changed.x';
63 string(9) "changed.x"
67 string(9) "changed.x"
H A Dfunc_num_args.004.phpt5 function valRef($x, &$y) {
6 var_dump($x, $y);
8 $x = 'changed.x';
13 function refVal(&$x, $y) {
14 var_dump($x, $y);
16 $x = 'changed.x';
48 string(9) "changed.x"
H A Dengine_assignExecutionOrder_008.phpt15 echo "\n" . '$$x=f(): ';
16 $x='i';
17 echo $a[$$x=f()][++$$x];
18 unset($i, $x);
65 $$x=f(): good
H A Dengine_assignExecutionOrder_009.phpt5 function f($x) {
6 echo "f($x) ";
7 return $x;
H A Dexecution_order.phpt73 $x = 1;
74 $z = $x - ($x++);
79 $x = 1;
80 $z = ($x++) - $x;
85 $x = 1;
86 $z = $x - (++$x);
91 $x = 1;
92 $z = (++$x) - $x;
98 $x = 1;
100 $z = $x - ($x=$y);
[all …]
H A DforeachLoop.011.phpt20 $b='x';
H A Dbug7515.phpt17 $x=ob_get_contents();
26 if ($x == $y) {
30 x=$x
H A Dbug21961.phpt53 $x = new man;
54 $x->getdrunk('The old Tavern');
55 var_dump($x->bars[0]->whosdrunk());
H A Dbug23384.phpt10 function test($x = Foo::HUN) {
16 print_r($x);
H A Dbug25547.phpt13 function foo($x) {
H A Dengine_assignExecutionOrder_002.phpt53 // expect $x and $y to be null - this fails on php.net 5.2.1 (invalid opcode) - fixed in 5.2.3
64 list(list(list($r,$s,,$t),list($u,$v),,$w),,$x) = $q4;
65 echo "$r $s $t $u $v $w $x\n";
H A Dengine_assignExecutionOrder_003.phpt65 $x = array(array(0),0);
68 global $x;
69 $x = $b;
78 $x[mod($x1)][mod($x2)] = $bx[mod($x3)];
82 var_dump($x);
/PHP-5.4/tests/func/
H A D010.phpt30 $str = "<?php\nfunction x(";
/PHP-5.4/tests/classes/
H A Diterators_007.phpt8 public $x = 0;
10 …public function rewind() { if ($this->x == 0) throw new Exception(__METHOD__); reset($this->arr…
11 …public function current() { if ($this->x == 1) throw new Exception(__METHOD__); return current($…
12 …public function key() { if ($this->x == 2) throw new Exception(__METHOD__); return key($this…
13 …public function next() { if ($this->x == 3) throw new Exception(__METHOD__); next($this->arr)…
14 …public function valid() { if ($this->x == 4) throw new Exception(__METHOD__); return (key($thi…
19 while($t->x < 5)
32 $t->x++;
H A Diterators_008.phpt35 foreach (new D as $x) {}

Completed in 45 milliseconds

12345678910>>...44