Home
last modified time | relevance | path

Searched refs:x (Results 201 – 225 of 1289) sorted by relevance

12345678910>>...52

/PHP-7.0/Zend/tests/
H A Dbug75420.14.phpt6 public function offsetExists($x) { $GLOBALS["obj"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dbug34310.phpt2 Bug #34310 (foreach($arr as $c->d => $x) crashes)
16 foreach($arr as $x => $c->d)
18 echo "{$x} => {$c->d}\n";
22 foreach($arr as $c->d => $x)
24 echo "{$c->d} => {$x}\n";
H A Dbug73181.phpt6 function x() {
7 parse_str("1&x");
11 x();
18 ["x"]=>
H A Dbug75420.10.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dbug75420.12.phpt6 public function offsetExists($x) { $GLOBALS["name"] = 24; return true; }
7 public function offsetGet($x) { var_dump($x); return 42; }
8 public function offsetSet($x, $y) { }
9 public function offsetUnset($x) { }
H A Dobjects_021.phpt14 return x();
18 return x();
22 return x();
26 function x() {
30 x()
H A Dbug35470.phpt5 $x = array("test", "55");
6 global ${$x[0]};
7 ${$x[0]} = $x[1];
H A Dbug29883.phpt5 $x = "bug";
6 var_dump(isset($x[-1]));
7 var_dump(isset($x["1"]));
8 echo $x["1"]."\n";
H A Dunset_cv03.phpt5 $x = "ok\n";
6 echo $x;
8 echo $x;
13 Notice: Undefined variable: x in %sunset_cv03.php on line %d
/PHP-7.0/ext/pcre/tests/
H A Dbug73612.phpt7 preg_match('/./', 'x', $obj);
11 preg_replace('/./', '', 'x', -1, $obj);
15 preg_replace_callback('/./', 'count', 'x', -1, $obj);
19 preg_replace_callback_array(['/./' => 'count'], 'x', -1, $obj);
23 preg_filter('/./', '', 'x', -1, $obj);
/PHP-7.0/ext/gd/tests/
H A Dbug49600.phpt17 $x = imagettftext($image, 32, 0, 0, 0, $color, $font, $c);
19 if ( abs($x[0] - $y[0]) > 1
20 || abs($x[2] - $y[2]) > 1
21 || abs($x[4] - $y[4]) > 1
22 || abs($x[6] - $y[6]) > 1 ) {
24 var_dump($x);
/PHP-7.0/ext/openssl/tests/
H A Dopenssl_spki_new_basic.phpt42 return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', mt_rand(0, 0xffff),
H A Dopenssl_spki_export_basic.phpt44 return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', mt_rand(0, 0xffff),
/PHP-7.0/ext/tokenizer/tests/
H A Dtoken_get_all_TOKEN_PARSE_001.phpt10 $x->$continue;
12 $x->continue();
14 $x->__halt_compiler();
18 public $x = self::CONTINUE + 1;
44 L4: T_VARIABLE $x
54 L6: T_VARIABLE $x
64 L8: T_VARIABLE $x
79 L12: T_VARIABLE $x
/PHP-7.0/ext/gd/libgd/
H A Dgd_gd.c168 int x, y; in gdImageCreateFromGdCtx() local
182 for (x = 0; x < sx; x++) { in gdImageCreateFromGdCtx()
187 im->tpixels[y][x] = pix; in gdImageCreateFromGdCtx()
192 for (x = 0; x < sx; x++) { in gdImageCreateFromGdCtx()
199 im->pixels[y][x] = ch; in gdImageCreateFromGdCtx()
249 int x, y; in _gdImageGd() local
254 for (x = 0; x < im->sx; x++) { in _gdImageGd()
257 gdPutInt(im->tpixels[y][x], out); in _gdImageGd()
259 gdPutC((unsigned char) im->pixels[y][x], out); in _gdImageGd()
/PHP-7.0/ext/gmp/tests/
H A D002.phpt7 function fact($x) {
8 if($x <= 1)
11 return gmp_mul($x,fact($x-1));
/PHP-7.0/ext/intl/tests/
H A Dspoofchecker_004.phpt11 $x = new Spoofchecker();
13 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
14 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
17 $x->setChecks(Spoofchecker::MIXED_SCRIPT_CONFUSABLE |
20 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
21 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
H A Dspoofchecker_005.phpt11 $x = new Spoofchecker();
13 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
14 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
17 $x->setChecks(Spoofchecker::MIXED_SCRIPT_CONFUSABLE |
20 var_dump($x->areConfusable("HELLO", "H\xD0\x95LLO"));
21 var_dump($x->areConfusable("hello", "h\xD0\xB5llo"));
H A Dspoofchecker_003.phpt10 $x = new Spoofchecker();
13 $x->setAllowedLocales('en_US');
14 var_dump($x->isSuspicious($korean));
18 $x->setAllowedLocales('en_US, ko_KR');
19 var_dump($x->isSuspicious($korean));
/PHP-7.0/ext/filter/tests/
H A D048.phpt25 $s = sprintf("%x", PHP_INT_MAX);
26 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
29 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
31 $s = sprintf("%x", ~0);
32 var_dump(is_long(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX))));
35 var_dump(filter_var('0x'.$s, FILTER_VALIDATE_INT, array("flags"=>FILTER_FLAG_ALLOW_HEX)));
/PHP-7.0/ext/standard/tests/strings/
H A Dbug27278.phpt12 $x="02";
13 var_dump($x);
14 foo($x);
15 var_dump($x);
/PHP-7.0/ext/fileinfo/tests/
H A Dmagic465 >>>0x08 ulelong x (0x%x)
2792 >>4 ubyte x id=0x%x
3814 >32 leshort x Version:0x%x
3819 >32 leshort x Version:0x%x
3824 >32 leshort x Version:0x%x
5467 >>>0 ubyte x (0x%x)
7654 >>4 ubyte x : ID=0x%x
8495 >32 lelong x CRC 0x%x,
14452 >>>>&0 leshort x 0x%x
14466 >>>>&0 leshort x 0x%x)
[all …]
/PHP-7.0/ext/reflection/tests/
H A DReflectionMethod_getDocComment_property_list.phpt14 $x = "x",
21 $reflection = new ReflectionProperty('\X', 'x');
22 echo 'X::x', PHP_EOL;
34 X::x
/PHP-7.0/ext/xmlwriter/tests/
H A Dbug41326.phpt29 $xw->startElementNS('test', 'test', 'urn:x-test:');
31 $xw->writeElementNS(null, 'bar', 'urn:x-test:', '');
32 $xw->writeElementNS(null, 'bar', 'urn:x-test:', NULL);
33 $xw->writeElementNS(null, 'bar', 'urn:x-test:');
50 <test:test xmlns:test="urn:x-test:">
52 <bar xmlns="urn:x-test:"></bar>
53 <bar xmlns="urn:x-test:"/>
54 <bar xmlns="urn:x-test:"/>
/PHP-7.0/ext/soap/tests/bugs/
H A Dbug32776.phpt12 function test($x) {
14 $d = $x;
35 $x = new LocalSoapClient(dirname(__FILE__)."/bug32776.wsdl",array("trace"=>true,"exceptions"=>false…
36 var_dump($x->test("Hello"));
38 var_dump($x->__getLastRequest());
39 var_dump($x->__getLastResponse());
46 ….xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><SOAP-ENV:test><x xsi:type="xsd:string">Hello</x></SOA…

Completed in 80 milliseconds

12345678910>>...52