Home
last modified time | relevance | path

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

1...<<11121314151617181920>>...74

/php-src/ext/standard/tests/array/
H A Dbug42177.phpt28 $x = 'foo';
29 $y =& $x;
30 $a1 = array($x, $y, $x, $y);
31 $a2 = array( 'key1' => $a1, $x, $y );
/php-src/Zend/tests/
H A Dbug42802.phpt27 $x = new bar();
29 test1($x);
30 test2($x);
31 test3($x);
33 test5($x);
H A Dbug67633.phpt6 function id($x) {
7 return $x;
10 function &ref_id(&$x) {
11 return $x;
H A Dbug38461.phpt16 private $x;
20 $op->x = 'test';
25 Fatal error: Uncaught Error: Cannot access private property ExtOperation::$x in %s:%d
27 #0 %s(%d): Operation->__set('x', 'test')
H A Dmagic_get_destroy_object.phpt7 $GLOBALS["x"] = null;
10 $x = new Test;
11 var_dump($x->prop);
H A Dns_017.phpt7 function strlen($x) {
11 $x = "strlen";
12 echo $x("Hello"),"\n";
H A Dns_064.phpt26 $x = new stdClass;
27 $x->a = 1;
28 $x->b->c = 1;
29 $x->d->e[0]->f = 2;
/php-src/Zend/tests/match/
H A D027.phpt9 public static function usesRef(&$x) {
10 $x = 'modified';
12 public static function usesValue($x) {
13 echo "usesValue $x\n";
33 Fatal error: Uncaught Error: Test::usesRef(): Argument #1 ($x) could not be passed by reference in …
/php-src/Zend/tests/arrow_functions/
H A D006.phpt8 $id = fn&(&$x) => $x;
15 $int_fn = fn(int $x): int => $x;
35 {closure:%s:%d}(): Argument #1 ($x) must be of type int, string given, called in %s on line %d
/php-src/ext/json/tests/
H A Dbug81532.phpt11 $b->x = $a;
15 $c->x = [$a];
29 '{"x":{}}'
31 '{"x":[{}]}'
/php-src/ext/intl/tests/
H A Dspoofchecker_002.phpt12 $x = new Spoofchecker();
14 var_dump($x->areConfusable("hello, world", "goodbye, world"));
15 var_dump($x->areConfusable("hello, world", "hello, world"));
16 var_dump($x->areConfusable("hello, world", "he11o, wor1d"));
/php-src/ext/reflection/tests/
H A Dbug51905.phpt12 public function x($x = 1, $y = array(self::X), $z = parent::Y) {}
16 $method = $clazz->getMethod('x');
24 $x : 1
/php-src/ext/standard/tests/serialize/
H A Dunserialize_overwrite_undeclared_protected.phpt11 O:4:"Test":2:{s:4:"\0*\0x";N;s:4:"\0*\0x";N;}
16 Deprecated: Creation of dynamic property Test::$x is deprecated in %s on line %d
20 ["x":protected]=>
/php-src/ext/opcache/tests/jit/
H A Dassign_obj_001.phpt12 $o->x = new stdClass;
15 $o->x += new stdClass;
32 Attempt to assign property "x" on null
33 Attempt to assign property "x" on null
H A Dbug81255.phpt13 private ?string $x = null;
16 if (!($this->x = str_repeat($a, 5))) {
19 var_dump($this->x);
20 $this->x = null;
H A Dgh8461-003.inc3 $x = 0;
14 global $x;
15 $x++;
H A Dgh8461-004.inc3 $x = 0;
14 global $x;
15 $x++;
/php-src/ext/spl/tests/SplObjectStorage/
H A Dbug67582.phpt16 foreach($list as $x) var_dump($list->offsetExists($x));
19 foreach($list2 as $x) var_dump($list2->offsetExists($x));
/php-src/ext/opcache/tests/
H A Dbug73654.phpt9 function x () : string {
10 return 'x';
14 return x().'yz';
/php-src/ext/opcache/tests/opt/
H A Dinference_013.phpt11 $x[] &= y;
12 $x = false;
13 $x[""] = y;
H A Dinference_014.phpt11 $x[y] &= y;
12 $x = false;
13 $x[""]=y;
/php-src/ext/standard/tests/math/
H A Dpow-operator.phpt6 $x = 2;
7 $x **= 3;
13 var_dump( $x === 8);
/php-src/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-src/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-src/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"

Completed in 31 milliseconds

1...<<11121314151617181920>>...74