Home
last modified time | relevance | path

Searched refs:x (Results 151 – 175 of 1289) sorted by relevance

12345678910>>...52

/PHP-7.0/Zend/tests/
H A Dconstant_arrays.phpt11 $x = FOOBAR;
12 $x[0] = 7;
13 var_dump($x, FOOBAR);
15 $x = FOO_BAR;
16 $x[0] = 7;
17 var_dump($x, FOO_BAR);
20 $x = 7;
21 $y = [&$x];
24 var_dump($x, $y, QUX);
H A Dns_073.phpt8 $x = function (\stdclass $x = NULL) {
9 var_dump($x);
12 $x(NULL);
13 $x(new \stdclass);
H A Dunset_cv01.phpt5 $x = "ok\n";
6 echo $x;
7 unset($x);
8 echo $x;
13 Notice: Undefined variable: x in %sunset_cv01.php on line %d
H A Ddereference_003.phpt9 public $x = 2;
11 $x = array();
12 $x[] = new foo;
13 return $x;
31 var_dump($foo->a()[0]->x);
33 var_dump($foo->b()[1][0]->a()[0]->x);
41 ["x"]=>
H A Dclosure_018.phpt7 public function test(&$x) {
9 $lambda = function &() use (&$x) {
10 return $x = $x * $x;
20 var_dump($x = $test->test($y));
21 var_dump($y, $x);
H A Dunset_cv02.phpt5 $x = "ok\n";
6 echo $x;
7 unset($GLOBALS["x"]);
8 echo $x;
13 Notice: Undefined variable: x in %sunset_cv02.php on line %d
H A Dclosure_005.phpt7 private $x;
9 function __construct($x) {
10 $this->x = $x;
19 $this->x += $val;
25 echo $this->x."\n";
31 echo $this->x."\n";
36 echo $this->x."\n";
H A Dbug55156.phpt12 $x = new \ReflectionFunction('foo\test');
13 var_dump($x->getDocComment());
21 $x = new \ReflectionClass('foo\bar');
22 var_dump($x->getDocComment());
24 $x = new \ReflectionClass('foo\foo');
25 var_dump($x->getDocComment());
H A Dobjects_031.phpt6 $x[] = clone new stdclass;
7 $x[] = clone new stdclass;
8 $x[] = clone new stdclass;
10 $x[0]->a = 1;
12 var_dump($x);
H A Dbug48533.phpt24 $x = new foo;
25 $x->a();
26 $x->b();
27 $x->c();
28 $x::a();
29 $x::b();
30 $x::c();
H A Dns_034.phpt10 function f1($x=Foo::C) {
11 echo $x;
13 function f2($x=B\Foo::C) {
14 echo $x;
16 function f3($x=\A\Foo::C) {
17 echo $x;
H A Dclosure_call.phpt7 public $x = 0;
10 return $this->x;
19 $foobar->x = 3;
30 return $this->x;
34 $elePHPant->x = 7;
41 return $this->x * $z;
49 private $x = 3;
53 var_dump($this->x);
/PHP-7.0/Zend/tests/generators/
H A Daborted_yield_during_nested_fcalls.phpt8 function gen($x) {
9 func(func($x, $x, func($x, yield)));
12 $gen = gen("x");
/PHP-7.0/ext/pcre/pcrelib/testdata/
H A Dtestoutput237 /\x{ffff}/
8 A\x{ffff}B
9 0: \x{ffff}
11 /\x{10000}/
12 Failed: character value in \x{} or \o{} is too large at offset 8
21 …-\x1f!-\x9f\xa1-\xff\x{100}-\x{167f}\x{1681}-\x{180d}\x{180f}-\x{1fff}\x{200b}-\x{202e}\x{2030}-\x
34 _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ \x7f \x80
48 [\x00-\x09\x0e-\x84\x86-\xff\x{100}-\x{2027}\x{202a}-\x{ffff}]
61 d e f g h i j k l m n o p q r s t u v w x y z { | } ~ \x7f \x80 \x81 \x82
/PHP-7.0/ext/simplexml/tests/
H A Dbug46003.phpt17 $x = simplexml_load_string($xml);
19 var_dump(isset($x->p));
20 var_dump(isset($x->p->o));
21 var_dump(isset($x->o->yy));
22 var_dump(isset($x->o->zz));
23 var_dump(isset($x->o->text));
24 var_dump(isset($x->o->xx));
H A Dbug66084_0.phpt7 echo var_dump(simplexml_load_string('<a><b/><c><x/></c></a>')), "\n";
8 echo var_dump(simplexml_load_string('<a><b/><d/><c><x/></c></a>')), "\n";
9 echo var_dump(simplexml_load_string('<a><b/><c><d/><x/></c></a>')), "\n";
10 echo var_dump(simplexml_load_string('<a><b/><c><d><x/></d></c></a>')), "\n";
19 ["x"]=>
34 ["x"]=>
49 ["x"]=>
63 ["x"]=>
/PHP-7.0/ext/intl/locale/
H A Dlocale.c42 #define LOCALE_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in locale_register_constants() argument
43 …#define LOCALE_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Locale_ce_ptr, ZEND_STRS( # in locale_register_constants() argument
/PHP-7.0/ext/intl/tests/
H A Dbug48227.phpt8 $x = new NumberFormatter('en_US', NumberFormatter::DECIMAL);
9 var_dump($x->format(''));
10 var_dump($x->format(1));
11 var_dump($x->format(NULL));
12 var_dump($x->format($x));
/PHP-7.0/ext/session/tests/
H A Dsessionhandler_open_001.phpt9 $x = new SessionHandler;
10 $x->open('','');
11 $x->open('','');
12 $x->open('','');
13 $x->open('','');
/PHP-7.0/ext/hash/
H A Dhash_ripemd.c140 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
141 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
142 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
144 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
182 #define ROLS(j, x) (((x) << S[j]) | ((x) >> (32 - S[j]))) argument
183 #define ROLSS(j, x) (((x) << SS[j]) | ((x) >> (32 - SS[j]))) argument
184 #define ROL(n, x) (((x) << n) | ((x) >> (32 - n))) argument
247 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD128Transform()
345 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD256Transform()
444 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD160Transform()
[all …]
/PHP-7.0/ext/spl/tests/
H A Dobserver_009.phpt13 echo ' x ';
21 echo ' x ';
28 Count storage A: 2 x x
29 Count storage B: 2 x x
/PHP-7.0/ext/standard/tests/file/
H A Dfwrite_variation4-win32.phpt2 Test fwrite() function : usage variations - x, xb, xt, x+, x+b & x+t modes
26 Test fwrite with file opened in mode : x, xb, xt, x+, x+b, x+t
30 $file_modes = array("x","xb","xt","x+","x+b","x+t");
77 -- Opening file in x --
101 -- Opening file in x+ --
109 -- Opening file in x+b --
127 -- Opening file in x --
151 -- Opening file in x+ --
177 -- Opening file in x --
201 -- Opening file in x+ --
[all …]
H A Dfwrite_variation4.phpt2 Test fwrite() function : usage variations - x, xb, xt, x+, x+b & x+t modes
26 Test fwrite with file opened in mode : x, xb, xt, x+, x+b, x+t
30 $file_modes = array("x","xb","xt","x+","x+b","x+t");
77 -- Opening file in x --
101 -- Opening file in x+ --
109 -- Opening file in x+b --
127 -- Opening file in x --
151 -- Opening file in x+ --
177 -- Opening file in x --
201 -- Opening file in x+ --
[all …]
/PHP-7.0/ext/reflection/tests/
H A Dbug61388.phpt5 $x = new ArrayObject();
6 $x[0] = 'test string 2';
7 $x['test'] = 'test string 3';
8 $reflObj = new ReflectionObject($x);
11 $x = (object)array("a", "oo" => "b");
12 $reflObj = new ReflectionObject($x);
/PHP-7.0/ext/mysqli/tests/
H A Dbug36802.phpt18 $x[0] = @$mysql->set_charset('utf8');
20 $x[0] = NULL;
22 $x[1] = @$mysql->query("SELECT 'foo' FROM DUAL");
25 $x[2] = ($mysql->client_version > 0);
26 $x[3] = $mysql->errno;
29 var_dump($x);

Completed in 48 milliseconds

12345678910>>...52