Home
last modified time | relevance | path

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

12345678910>>...49

/PHP-5.6/Zend/tests/
H A Dunset_cv04.phpt6 $x = "ok\n";
7 echo $x;
9 echo $x;
16 Notice: Undefined variable: x in %sunset_cv04.php on line %d
H A Dbug46106.phpt11 function test($x) {
14 $x->invokeArgs(array(0));
17 $x = new ReflectionFunction('str_pad');
18 test($x);
H A Dunset_cv11.phpt5 $x = array("default"=>"ok");
6 var_dump($x);
7 $cf = $x;
9 var_dump($x);
H A Dindirect_property_access.phpt7 public $x = 1;
14 $x = 'bar';
19 var_dump((new $x)->y); // foo
20 var_dump((new $bar->y)->x); // 1
/PHP-5.6/ext/dom/tests/
H A Ddom007.phpt53 for($x=0; $x < $length; $x++) {
54 …echo "Index $x: ".$nots->item($x)->nodeName." (".$nots->item($x)->systemId.") (".$nots->item($x)->…
78 for($x=0; $x < $length; $x++) {
79 $xkeys[] = "Index: ".$ents->item($x)->nodeName."\n";
/PHP-5.6/ext/pdo_sqlite/tests/
H A Ddebugdumpparams_001.phpt12 $x= $db->prepare('select :a, :b, ?');
13 $x->bindValue(':a', 1, PDO::PARAM_INT);
14 $x->bindValue(':b', 'foo');
15 $x->bindValue(3, 1313);
16 var_dump($x->debugDumpParams());
/PHP-5.6/ext/json/tests/
H A D008.phpt8 $x = json_decode($json);
9 var_dump($x->largenum);
10 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
11 var_dump($x->largenum);
/PHP-5.6/ext/tidy/tests/
H A D028.phpt7 $x = tidy_parse_string("<body><div>Content</div></body>");
8 var_dump($x->body()->child[0]->name);
9 var_dump($x->body()->child[0]->getParent()->name);
10 var_dump($x->root()->getParent());
/PHP-5.6/ext/phar/tests/zip/
H A Drename_dir.phpt18 $phar['a/x'] = 'a';
23 echo file_get_contents($alias . '/a/x') . "\n";
25 echo file_get_contents($alias . '/b/x') . "\n";
26 echo file_get_contents($alias . '/a/x') . "\n";
34 …ning: file_get_contents(phar://%srename_dir.phar.zip/a/x): failed to open stream: phar error: "a/x
/PHP-5.6/ext/phar/tests/
H A Drename_dir.phpt18 $files['a/x'] = 'a';
22 echo file_get_contents($pname . '/a/x') . "\n";
24 echo file_get_contents($pname . '/b/x') . "\n";
25 echo file_get_contents($pname . '/a/x') . "\n";
33 …ning: file_get_contents(phar://%srename_dir.phar.php/a/x): failed to open stream: phar error: "a/x
H A Drename_dir_and_mount.phpt17 $files['a/x'] = 'a';
18 $files['a/b/x'] = 'a';
25 var_dump(file_exists($pname . '/a/x'));
27 var_dump(file_exists($pname . '/a/b/x'));
33 var_dump(file_exists($pname . '/a/x'));
35 var_dump(file_exists($pname . '/a/b/x'));
39 var_dump(file_exists($pname . '/b/x'));
41 var_dump(file_exists($pname . '/b/b/x'));
/PHP-5.6/ext/spl/tests/
H A DarrayObject_asort_basic2.phpt14 public $prop1 = 'x';
17 public $prop4 = 'x';
35 string(1) "x"
37 string(1) "x"
46 string(1) "x"
48 string(1) "x"
H A Dfixedarray_008.phpt15 foreach ($a as $x) {
16 if (is_object($x)) {
17 var_dump($x[0]);
19 var_dump($x);
/PHP-5.6/ext/standard/tests/strings/
H A Dvsprintf_basic9.phpt14 $format1 = "%x";
15 $format2 = "%x %x";
16 $format3 = "%x %x %x";
/PHP-5.6/ext/openssl/tests/
H A Dopenssl_spki_verify_basic.phpt44 return sprintf('%04x%04x-%04x-%04x-%04x-%04x%04x%04x', mt_rand(0, 0xffff),
/PHP-5.6/ext/reflection/tests/
H A Dbug38465.phpt11 public function x($a = self::X, $b = Baz::B, $c = 99) {}
54 Foo::x($a = 1)
55 Foo::x($b = 3)
56 Foo::x($c = 99)
62 Foo::x($a = 1)
63 Foo::x($b = 3)
64 Foo::x($c = 99)
H A Dbug51911.phpt8 public function x($x = array(1)) {}
12 $method = $clazz->getMethod('x');
20 $x : array (
/PHP-5.6/ext/gd/tests/
H A Dbug66356.phpt12 var_dump(imagecrop($img, array("x" => "a", "y" => 0, "width" => 10, "height" => 10)));
14 $arr = array("x" => "a", "y" => "12b", "width" => 10, "height" => 10);
19 var_dump(imagecrop($img, array("x" => 0, "y" => 0, "width" => -1, "height" => 10)));
22 var_dump(imagecrop($img, array("x" => -20, "y" => -20, "width" => 10, "height" => 10)));
25 var_dump(imagecrop($img, array("x" => 0x7fffff00, "y" => 0, "width" => 10, "height" => 10)));
28 var_dump(imagecrop($img, array("x" => 0, "y" => 0, "width" => 65535, "height" => 65535)));
35 [x] => a
H A Dbug53156.phpt12 function draw_and_check_pixel($x, $y)
16 echo (imagecolorat($img, $x, $y) === $black) ? '+' : '-';
17 imagesetpixel($img, $x, $y, $red);
26 $x = ($x1 + $x2) / 2;
28 draw_and_check_pixel($x, $y1);
30 draw_and_check_pixel($x, $y2);
/PHP-5.6/ext/fileinfo/
H A Dmagicdata.patch21 !:mime text/x-awk
23 !:mime text/x-awk
47 !:mime text/x-awk
49 !:mime text/x-awk
126 -!:mime application/x-ima
137 -!:mime application/x-ima
142 -!:mime application/x-ima
155 ->>512 ubyte x \b, Media descriptor 0x%x
160 +#>>512 ubyte x \b, Media descriptor 0x%x
174 ->>>>1 ubyte x \b, code offset 0x%x+2
[all …]
/PHP-5.6/ext/xmlreader/tests/
H A Dbug64230.phpt21 $x = new XMLReader;
22 $x->xml("<root att/>");
23 $x->read();
30 $x = new XMLReader;
31 $x->xml("<root att/>");
32 $x->read();
/PHP-5.6/ext/date/tests/
H A Ddate_time_immutable-inherited.phpt12 $x = $v->getTimezone();
13 var_dump($x->getName());
17 $x = $v->getTimestamp();
18 var_dump($x);
/PHP-5.6/ext/intl/tests/
H A Dlocale_lookup.phpt31 'sl_IT_nedis-a-kirti-x-xyz',
41 'zh-Hant-CN-x-prv1-prv2'
73 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
79 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
85 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
91 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
97 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
H A Dlocale_lookup_variant2.phpt31 'sl_IT_nedis-a-kirti-x-xyz',
41 'zh-Hant-CN-x-prv1-prv2'
73 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
79 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
85 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
91 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
97 …l_IT_nedis-a-kirti-x-xyz,sl_IT_rozaj,sl_IT_NEDIS_ROJAZ_1901,i-enochian,sgn-CH-de,art-lojban,i-lux,…
/PHP-5.6/ext/odbc/
H A Dphp_odbc_includes.h291 #define IS_SQL_LONG(x) (x == SQL_LONGVARBINARY || x == SQL_LONGVARCHAR || x == SQL_WLONGVARCHAR) argument
298 #define IS_SQL_LONG(x) (x == SQL_LONGVARBINARY || x == SQL_LONGVARCHAR) argument
305 #define IS_SQL_BINARY(x) (x == SQL_BINARY || x == SQL_VARBINARY || x == SQL_LONGVARBINARY) argument

Completed in 60 milliseconds

12345678910>>...49