Home
last modified time | relevance | path

Searched refs:x (Results 401 – 425 of 1790) sorted by relevance

1...<<11121314151617181920>>...72

/PHP-8.3/ext/standard/tests/math/
H A Dpow-operator.phpt6 $x = 2;
7 $x **= 3;
13 var_dump( $x === 8);
/PHP-8.3/ext/opcache/tests/opt/
H A Dinference_014.phpt11 $x[y] &= y;
12 $x = false;
13 $x[""]=y;
H A Dinference_015.phpt11 $x[y.y] &= y;
12 $x = false;
13 $x[""] = y;
/PHP-8.3/Zend/tests/
H A Dns_017.phpt7 function strlen($x) {
11 $x = "strlen";
12 echo $x("Hello"),"\n";
H A Dcall_user_func_006.phpt12 $x = 42;
13 $ref =& $x;
14 \call_user_func('Foo\bar', $x);
15 var_dump($x);
H A Dns_064.phpt26 $x = new stdClass;
27 $x->a = 1;
28 $x->b->c = 1;
29 $x->d->e[0]->f = 2;
H A Dclosure_039.phpt7 private $x;
10 $this->x = $v;
14 return function() { return ++$this->x; };
18 private $x;
21 $this->x = $v*2;
58 Fatal error: Uncaught Error: Cannot access private property B::$x in %s:%d
H A Dclosure_038.phpt7 private $x;
10 $this->x = $v;
14 return function() { return ++$this->x; };
18 private $x;
21 $this->x = $v*2;
58 Fatal error: Uncaught Error: Cannot access private property B::$x in %s:%d
H A Dunset_cast_removed.phpt6 $x = 1;
7 var_dump((unset) $x);
8 var_dump($x);
H A Dbug48428.phpt6 function x() { throw new Exception("ERROR"); }
7 x(x());
/PHP-8.3/ext/opcache/tests/jit/
H A Dbug79358.phpt8 function test(int $x) {
9 return ($x > 0xdead && unimportant()) ||
10 ($x < 0xbeef && unimportant());
H A Dassign_obj_001.phpt13 $o->x = new stdClass;
16 $o->x += new stdClass;
33 Attempt to assign property "x" on null
34 Attempt to assign property "x" on null
H A Dbug81255.phpt14 private ?string $x = null;
17 if (!($this->x = str_repeat($a, 5))) {
20 var_dump($this->x);
21 $this->x = null;
/PHP-8.3/ext/spl/tests/
H A Dbug46051.phpt6 $x = new splfileinfo(__FILE__);
9 $x->openFile("", false, []);
12 var_dump($x->getPathName());
/PHP-8.3/ext/mbstring/tests/
H A Dmb_convert_encoding_leak.phpt8 $x = "x";
9 $array = ["foo" . $x => "bar"];
/PHP-8.3/ext/ftp/tests/
H A D005.phpt19 var_dump(ftp_chmod($ftp, 0666, 'x'));
20 var_dump(ftp_delete($ftp, 'x'));
21 var_dump(ftp_exec($ftp, 'x'));
23 ftp_fget($ftp, STDOUT, 'x', 0);
29 ftp_fput($ftp, 'x', fopen(__FILE__, 'r'), 0);
35 ftp_get($ftp, 'x', 'y', 0);
40 var_dump(ftp_mdtm($ftp, 'x'));
41 var_dump(ftp_mkdir($ftp, 'x'));
45 ftp_nb_fget($ftp, STDOUT, 'x', 0);
51 ftp_nb_fput($ftp, 'x', fopen(__FILE__, 'r'), 0);
/PHP-8.3/ext/pcre/tests/
H A Dpreg_replace2.phpt13 var_dump(preg_replace(array('/\da(.)/ui', '@(.)@'), '$1', array('x','a2aA', '1av2Ab')));
17 var_dump(preg_replace(array('/\s+/', '~[b-d]~'), array('$'), array('x y', 'bd bc')));
24 string(1) "x"
38 string(3) "x$y"
/PHP-8.3/Zend/tests/type_declarations/variance/
H A Dparent_in_class_failure2.phpt9 public function method(parent $x) {}
12 public function method(parent $x) {}
17 Fatal error: Declaration of B4::method(A4 $x) must be compatible with A4::method(P4 $x) in %s on li…
/PHP-8.3/ext/openssl/tests/
H A Dopenssl_spki_export_challenge_basic.phpt44 return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', mt_rand(0, 0xffff),
/PHP-8.3/ext/standard/tests/serialize/
H A Dsleep_deref.phpt7 public $x = 42;
9 $name = 'x';
18 string(28) "O:4:"Test":1:{s:1:"x";i:42;}"
/PHP-8.3/Zend/tests/generators/
H A Dbug71013.phpt27 $x = foo();
29 var_dump($x->current());
33 echo "Unsetting \$x\n";
34 unset($x);
47 Unsetting $x
/PHP-8.3/ext/standard/tests/file/
H A Dfscanf_variation35.phpt29 $hexa_formats = array( "%x", "%hx", "%lx", "%Lx", " %x", "%x ", "% x", "\t%x", "\n%x", "%4x", "%30x
H A D007_variation16.phpt2 Test fopen and fclose() functions - usage variations - "x+t" mode
6 /* Test fopen() and fclose(): Opening the file in "x+t" mode,
9 checking for the warning msg when trying to open an existing file in "x+t" mode,
16 echo "*** Test fopen() & fclose() functions: with 'x+t' mode ***\n";
17 $file_handle = fopen($file, "x+t"); //opening the non-existing file in "x+t" mode, file will be cr…
28 $file_handle = fopen($file, "x+t"); //Opening the existing data file in "x+t" mode to check for th…
35 *** Test fopen() & fclose() functions: with 'x+t' mode ***
H A D007_variation7.phpt2 Test fopen and fclose() functions - usage variations - "x" mode
6 /* Test fopen() and fclose(): Opening the file in "x" mode,
9 checking for the warning msg when trying to open an existing file in "x" mode,
16 echo "*** Test fopen() & fclose() functions: with 'x' mode ***\n";
17 $file_handle = fopen($file, "x"); //opening the non-existing file in "x" mode, file will be created
28 $file_handle = fopen($file, "x"); //Opening the existing data file in 'x' mode to check for the wa…
35 *** Test fopen() & fclose() functions: with 'x' mode ***
H A D007_variation24.phpt2 Test fopen and fclose() functions - usage variations - "x+b" mode
6 /* Test fopen() and fclose(): Opening the file in "x+b" mode,
9 checking for the warning msg when trying to open an existing file in "x+b" mode,
16 echo "*** Test fopen() & fclose() functions: with 'x+b' mode ***\n";
17 $file_handle = fopen($file, "x+b"); //opening the non-existing file in "x+b" mode, file will be cr…
28 $file_handle = fopen($file, "x+b"); //Opening the existing data file in "x+b" mode to check for th…
35 *** Test fopen() & fclose() functions: with 'x+b' mode ***

Completed in 21 milliseconds

1...<<11121314151617181920>>...72