Home
last modified time | relevance | path

Searched refs:x (Results 126 – 150 of 1379) sorted by relevance

12345678910>>...56

/PHP-7.3/Zend/tests/
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 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 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 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 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 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 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 Dlist_mixed_nested_keyed_unkeyed.phpt7 ["x" => 1, "y" => 2],
8 ["x" => 2, "y" => 1]
11 list(list("x" => $x1, "y" => $y1), list("x" => $x2, "y" => $y2)) = $points;
17 "x" => [1, 2],
21 list("x" => list($x1, $x2), "y" => list($y1, $y2)) = $invertedPoints;
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 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.3/ext/dba/libcdb/
H A Dcdb_make.c147 struct cdb_hplist *x; in cdb_make_finish() local
153 for (x = c->head; x; x = x->next) { in cdb_make_finish()
154 i = x->num; in cdb_make_finish()
156 ++c->count[255 & x->hp[i].h]; in cdb_make_finish()
186 for (x = c->head; x; x = x->next) { in cdb_make_finish()
187 i = x->num; in cdb_make_finish()
189 c->split[--c->start[255 & x->hp[i].h]] = x->hp[i]; in cdb_make_finish()
224 for (x = c->head; x; c->head = x) { in cdb_make_finish()
225 x = x->next; in cdb_make_finish()
/PHP-7.3/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.3/ext/intl/locale/
H A Dlocale.c40 #define LOCALE_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in locale_register_constants() argument
41 …#define LOCALE_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Locale_ce_ptr, ZEND_STRS( # in locale_register_constants() argument
/PHP-7.3/ext/intl/normalizer/
H A Dnormalizer.c40 #define NORMALIZER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_PERSISTENT | CONST_CS) in normalizer_register_constants() argument
41 … NORMALIZER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( Normalizer_ce_ptr, ZEND_STRS( … in normalizer_register_constants() argument
/PHP-7.3/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));
H A Dspoofchecker_006.phpt10 $x = new Spoofchecker();
11 var_dump($x->isSuspicious("http://www.payp\u{0430}l.com"));
12 var_dump($x->isSuspicious("\u{041F}aypal.com"));
15 $x = new Spoofchecker();
16 $x->setAllowedLocales("gr_GR");
17 var_dump($x->isSuspicious("NAPKIN PEZ"));
18 var_dump($x->isSuspicious("napkin pez"));
/PHP-7.3/ext/gd/tests/
H A Dbug73281.phpt18 list($x, $y) = $coordinate;
19 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
28 list($x, $y) = $coordinate;
29 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
/PHP-7.3/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.3/ext/hash/
H A Dhash_ripemd.c142 #define F0(x,y,z) ((x) ^ (y) ^ (z)) argument
143 #define F1(x,y,z) (((x) & (y)) | ((~(x)) & (z))) argument
144 #define F2(x,y,z) (((x) | (~(y))) ^ (z)) argument
146 #define F4(x,y,z) ((x) ^ ((y) | (~(z)))) argument
184 #define ROLS(j, x) (((x) << S[j]) | ((x) >> (32 - S[j]))) argument
185 #define ROLSS(j, x) (((x) << SS[j]) | ((x) >> (32 - SS[j]))) argument
186 #define ROL(n, x) (((x) << n) | ((x) >> (32 - n))) argument
249 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD128Transform()
347 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD256Transform()
446 ZEND_SECURE_ZERO(x, sizeof(x)); in RIPEMD160Transform()
[all …]
/PHP-7.3/ext/mysqli/tests/
H A Dbug36802.phpt18 $x[0] = @$mysql->set_charset('utf8');
20 $x[0] = false;
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);
/PHP-7.3/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 …]

Completed in 68 milliseconds

12345678910>>...56