Home
last modified time | relevance | path

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

12345678910>>...47

/PHP-5.5/win32/
H A Dphp5dllts.dsp2418 mc -h $(InputDir)/.. -r $(InputDir) -x $(IntDir) $(InputPath)
H A Dinstall.txt12 Apache 1.3.x on Microsoft Windows
13 Apache 2.0.x on Microsoft Windows
486 Apache 1.3.x on Microsoft Windows
537 AddType application/x-httpd-php .php
551 AddType application/x-httpd-php .php
580 Apache 2.0.x on Microsoft Windows
588 Apache 2.2.x Support: Users of Apache 2.2.x may use the
775 <Object name="x-httpd-php">
1180 $ mv extname-x.x.x extname
1266 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
/PHP-5.5/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.5/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.5/tests/run-test/
H A Dtest002.phpt10 x
17 %x
/PHP-5.5/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 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 Dbug7515.phpt17 $x=ob_get_contents();
26 if ($x == $y) {
30 x=$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);
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';
/PHP-5.5/tests/func/
H A D010.phpt30 $str = "<?php\nfunction x(";
/PHP-5.5/tests/classes/
H A Dstatic_properties_003.phpt6 public static $x = 'C::$x';
13 var_dump(isset($c->x));
14 unset($c->x);
15 echo $c->x;
16 $c->x = 1;
18 $c->x =& $ref;
19 var_dump($c->x, C::$x);
33 Strict Standards: Accessing static property C::$x as non static in %s on line 11
35 Strict Standards: Accessing static property C::$x as non static in %s on line 12
37 Notice: Undefined property: C::$x in %s on line 12
[all …]
H A Dfactory_and_singleton_003.phpt9 protected function __construct($x) {

Completed in 82 milliseconds

12345678910>>...47