Home
last modified time | relevance | path

Searched refs:x (Results 1801 – 1819 of 1819) sorted by path

1...<<717273

/php-src/tests/lang/
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 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';
44 string(9) "changed.x"
62 string(9) "changed.x"
66 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';
46 string(9) "changed.x"
H A Dinvalid_octal.phpt6 $x = 08;
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';
38 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
/php-src/tests/lang/operators/
H A Dcoalesce.phpt46 function f($x)
48 printf("%s(%d)\n", __FUNCTION__, $x);
49 return $x;
H A Doverloaded_property_ref.phpt8 function &__get($x) { return $this->bar; }
9 function __set($x, $v) { $this->bar = $v; }
11 $x = new C;
12 var_dump(++$x->foo);
13 $x = new C;
14 var_dump($x->foo++);
15 $x = new C;
16 var_dump($x->foo += 2);
/php-src/tests/run-test/
H A Dtest002.phpt10 x
17 %x
H A Dtest012.phpt10 x
H A Dtest012.txt6 %x
/php-src/tests/security/
H A Dbug53226.phpt13 $file = str_repeat('x', 2 * PHP_MAXPATHLEN);
/php-src/tests/strings/
H A D002.phpt7 $x = fprintf($fp, "fprintf test 1:%.5s", "abcdefghij");
9 var_dump($x);
28 printf("printf test 16:%x\n", 170);
31 printf("printf test 19:%16x\n", 170);
34 printf("printf test 22:%016x\n", 170);
43 print("printf test 30:"); printf("%0\$s", 1); print("x\n");
H A Dbug22592.phpt7 $t = $x[] = 'x';
/php-src/win32/build/
H A Dconfutils.js1925 for(var x = 0; x < extensions_enabled.length; ++x)
1927 var l = extensions_enabled[x];
H A Dmkdist.php210 $x = stream_copy_to_stream($fp, $dest, $hdr['size']);
212 echo "Wrote $x bytes into $destfilename\n";
/php-src/win32/
H A Dparam.h18 #define howmany(x,y) (((x)+((y)-1))/(y)) argument
19 #define roundup(x,y) ((((x)+((y)-1))/(y))*(y)) argument

Completed in 34 milliseconds

1...<<717273