Home
last modified time | relevance | path

Searched refs:x (Results 226 – 250 of 997) sorted by relevance

12345678910>>...40

/PHP-5.3/Zend/tests/
H A Dbug60825.phpt8 public static $x;
10 self::$x = $this;
16 debug_zval_dump(test::$x);
H A Dbug30162.phpt8 $this->x = "x";
49 ["x"]=>
50 string(1) "x"
H A Dns_058.phpt23 function f1($x=namespace\C) {
24 return $x;
26 function f2($x=namespace\foo::C) {
27 return $x;
30 function f3(namespace\foo $x) {
H A Dobjects_019.phpt13 $x = $foo[1]->a;
14 $x = 'foo';
16 var_dump($foo, $x);
H A Dbug30707.phpt25 $x = new C;
26 $x->byePHP($x->plip());
H A Dns_057.phpt25 function f1($x=namespace\C) {
26 return $x;
28 function f2($x=namespace\foo::C) {
29 return $x;
32 function f3(namespace\foo $x) {
/PHP-5.3/ext/exif/tests/
H A Dbug60150.phpt17 Warning: exif_read_data(bug60150.jpg): Error reading from file: got=x%x(=%d) != itemlen-%d=x%x(=%d)…
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug39832.phpt19 function Test($x) {
20 return $x->priority;
23 $x = new SoapServer(dirname(__FILE__)."/bug39832.wsdl");
24 $x->addFunction("Test");
25 $x->handle($HTTP_RAW_POST_DATA);
/PHP-5.3/ext/soap/tests/
H A Dserver004.phpt7 function Add($x,$y) {
8 return $x+$y;
10 function Sub($x,$y) {
11 return $x-$y;
27 <x xsi:type="xsd:int">22</x>
/PHP-5.3/ext/intl/formatter/
H A Dformatter.c43 #define FORMATTER_EXPOSE_CONST(x) REGISTER_LONG_CONSTANT(#x, x, CONST_CS) in formatter_register_constants() argument
44 …e FORMATTER_EXPOSE_CLASS_CONST(x) zend_declare_class_constant_long( NumberFormatter_ce_ptr, ZEND_S… in formatter_register_constants() argument
/PHP-5.3/ext/mysqli/
H A Dphp_mysqli_structs.h181 #define L64(x) x##i64 argument
195 #define L64(x) x##LL argument
312 #define my_estrdup(x) (x) ? estrdup(x) : NULL argument
313 #define my_efree(x) if (x) efree(x) argument
/PHP-5.3/ext/intl/tests/
H A Dlocale_get_region.phpt48 'de-CH-x-phonebk',
49 'az-Arab-x-AZE-derbend',
54 'x-whatever',
55 'qaa-Qaaa-QM-x-southern',
61 'zh-CN-a-myExt-x-private',
110 de-CH-x-phonebk: region='CH'
111 az-Arab-x-AZE-derbend: region='%r(X)?%r'
114 x-whatever: region=''
115 qaa-Qaaa-QM-x-southern: region='QM'
119 zh-CN-a-myExt-x-private: region='CN'
/PHP-5.3/ext/json/tests/
H A Dbug40503.phpt9 function show_eq($x,$y) {
10 echo "$x ". ($x==$y ? "==" : "!=") ." $y\n";
/PHP-5.3/tests/classes/
H A Dbug27468.phpt7 foreach ($this->x as $x);
14 Notice: Undefined property: foo::$x in %sbug27468.php on line 4
/PHP-5.3/ext/gd/libgd/
H A Dgd.h294 void gdImageSetPixel(gdImagePtr im, int x, int y, int color);
296 int gdImageGetTrueColorPixel (gdImagePtr im, int x, int y);
297 int gdImageGetPixel(gdImagePtr im, int x, int y);
342 double ptsize, double angle, int x, int y, char *string);
346 double ptsize, double angle, int x, int y, char *string);
372 double ptsize, double angle, int x, int y, char * string,
378 int x, y; member
545 void gdImageFill(gdImagePtr im, int x, int y, int color);
621 #define gdImagePalettePixel(im, x, y) (im)->pixels[(y)][(x)] argument
622 #define gdImageTrueColorPixel(im, x, y) (im)->tpixels[(y)][(x)] argument
[all …]
/PHP-5.3/ext/reflection/tests/
H A Dbug46064.phpt6 class x {
10 $o = new x;
54 string(1) "x"
66 string(30) "Property x::$zz does not exist"
71 string(1) "x"
/PHP-5.3/tests/lang/
H A Dengine_assignExecutionOrder_003.phpt65 $x = array(array(0),0);
68 global $x;
69 $x = $b;
78 $x[mod($x1)][mod($x2)] = $bx[mod($x3)];
82 var_dump($x);
/PHP-5.3/ext/standard/tests/file/
H A Dfscanf_variation38.phpt31 $hexa_formats = array( "%x", "%hx", "%lx", "%Lx", " %x", "%x ", "% x", "\t%x", "\n%x", "%4x", "%30x
/PHP-5.3/ext/interbase/tests/
H A Dibase_trans_001.phpt10 $x = ibase_connect($test_base);
11 var_dump(ibase_trans($x));
14 var_dump(ibase_close($x));
/PHP-5.3/ext/pcre/tests/
H A Dmatch_flags.phpt6 var_dump(preg_match_all('/(.)x/', 'zxax', $match, PREG_PATTERN_ORDER));
9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER));
12 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_OFFSET_CAPTURE));
15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE));
H A Dpreg_replace2.phpt15 var_dump(preg_replace(array('/\da(.)/ui', '@(.)@'), '$1', array('x','a2aA', '1av2Ab')));
19 var_dump(preg_replace(array('/\s+/', '~[b-d]~'), array('$'), array('x y', 'bd bc')));
30 string(1) "x"
44 string(3) "x$y"
/PHP-5.3/ext/mbstring/tests/
H A Dbug30549.phpt17 printf("0x%04x, 0x%04x\n", $toc, $unic);
/PHP-5.3/ext/phar/tests/
H A Drmdir.phpt18 $files['a/x'] = 'a';
22 echo file_get_contents($pname . '/a/x') . "\n";
24 echo file_get_contents($pname . '/a/x') . "\n";
25 unlink($pname . '/a/x');
/PHP-5.3/ext/spl/tests/
H A Dbug45826.phpt32 unset($o,$x,$s1,$s2,$o1,$o2);
72 string(84) "C:11:"ArrayObject":60:{x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:4;i:2;r:1;};m:a:0:{}}"
73 string(125) "x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:3;i:2;C:11:"ArrayObject":45:{x:i:0;a:3:{i:0;r:…
82 string(85) "C:12:"ArrayObject2":60:{x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:4;i:2;r:1;};m:a:0:{}}"
83 string(126) "x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:3;i:2;C:12:"ArrayObject2":45:{x:i:0;a:3:{i:0;r…
/PHP-5.3/ext/standard/tests/strings/
H A Dprintf_basic9.phpt16 $format1 = "%x";
17 $format2 = "%x %x";
18 $format3 = "%x %x %x";

Completed in 43 milliseconds

12345678910>>...40