Home
last modified time | relevance | path

Searched refs:x (Results 176 – 200 of 997) sorted by relevance

12345678910>>...40

/PHP-5.3/Zend/tests/
H A Dbug50174.phpt13 function x() {}
16 $rm = new ReflectionMethod('TestClass', 'x');
24 public $x;
27 $rp = new ReflectionProperty('TestClass2', 'x');
H A Dbug42802.phpt27 $x = new bar();
29 test1($x);
30 test2($x);
31 test3($x);
33 test5($x);
H A Dclosure_025.phpt6 $a = create_function('$x', 'return function($y) use ($x) { return $x * $y; };');
H A Dbug19859.phpt14 $x = new test;
15 $x->fake(1);
16 call_user_func_array(array($x,'fake'),array(1));
17 call_user_func(array($x,'fake'),2);
H A Dns_064.phpt26 $x = new stdClass;
27 $x->a = 1;
28 $x->b->c = 1;
29 $x->d->e[0]->f = 2;
/PHP-5.3/ext/standard/tests/array/
H A Dbug42177.phpt24 $x = 'foo';
25 $y =& $x;
26 $a1 = array($x, $y, $x, $y);
27 $a2 = array( 'key1' => $a1, $x, $y );
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug30928.phpt15 function test($x) {
16 return $x;
36 $x = new LocalSoapClient(dirname(__FILE__)."/bug30928.wsdl",
38 var_dump($x->test(new foo()));
40 $x = new LocalSoapClient(dirname(__FILE__)."/bug30928.wsdl",
42 var_dump($x->test(new foo()));
/PHP-5.3/ext/phar/tests/tar/
H A Drename_dir.phpt21 $files['a/x'] = 'a';
31 echo file_get_contents($alias . '/a/x') . "\n";
33 echo file_get_contents($alias . '/b/x') . "\n";
34 echo file_get_contents($alias . '/a/x') . "\n";
42 …ning: file_get_contents(phar://%srename_dir.phar.tar/a/x): failed to open stream: phar error: "a/x
/PHP-5.3/ext/standard/tests/strings/
H A Dvprintf_basic9.phpt14 $format1 = "%x";
15 $format2 = "%x %x";
16 $format3 = "%x %x %x";
H A Dsprintf_basic9.phpt16 $format1 = "%x";
17 $format2 = "%x %x";
18 $format3 = "%x %x %x";
H A Dvfprintf_basic9.phpt14 $format1 = "%x";
15 $format2 = "%x %x";
16 $format3 = "%x %x %x";
/PHP-5.3/tests/classes/
H A D__set__get_001.phpt9 public $x = array('a' => 1, 'b' => 2, 'c' => 3);
14 if (isset($this->x[$nm])) {
15 $r = $this->x[$nm];
27 if (isset($this->x[$nm])) {
28 $this->x[$nm] = $val;
63 ["x"]=>
H A D__set__get_004.phpt8 protected $x;
11 if (isset($this->x[$name])) {
12 return $this->x[$name];
21 $this->x[$name] = $val;
/PHP-5.3/ext/soap/tests/soap12/
H A Dsoap12-test.inc5 function echoOk($x) {
6 return $x;
33 function echoStruct($x) {
34 return $x;
37 function echoStructArray($x) {
38 return $x;
103 function requiredHeader($x) {
104 $this->header = $x;
/PHP-5.3/ext/intl/tests/
H A Dlocale_set_default.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',
120 de-CH-x-phonebk: set locale 'de-CH-x-phonebk'
121 az-Arab-x-AZE-derbend: set locale 'az-Arab-x-AZE-derbend'
124 x-whatever: set locale 'x-whatever'
125 qaa-Qaaa-QM-x-southern: set locale 'qaa-Qaaa-QM-x-southern'
129 zh-CN-a-myExt-x-private: set locale 'zh-CN-a-myExt-x-private'
/PHP-5.3/tests/lang/
H A Dbug7515.phpt17 $x=ob_get_contents();
26 if ($x == $y) {
30 x=$x
/PHP-5.3/ext/pcre/pcrelib/
H A Dpcre_xclass.c97 pcre_uint32 x, y; in PRIV() local
103 GETCHARINC(x, data); /* macro generates multiple statements */ in PRIV()
107 x = *data++; in PRIV()
108 if (c == x) return !negated; in PRIV()
115 GETCHARINC(x, data); /* macro generates multiple statements */ in PRIV()
121 x = *data++; in PRIV()
124 if (c >= x && c <= y) return !negated; in PRIV()
/PHP-5.3/ext/standard/tests/general_functions/
H A Dvar_export_basic9.phpt5 $x = new stdClass();
6 $x->{'\'\\'} = 7;
7 echo var_export($x);
/PHP-5.3/ext/ftp/tests/
H A D005.phpt20 var_dump(ftp_chmod($ftp, 0666, 'x'));
21 var_dump(ftp_delete($ftp, 'x'));
22 var_dump(ftp_exec($ftp, 'x'));
23 var_dump(ftp_fget($ftp, STDOUT, 'x', 0));
24 var_dump(ftp_fput($ftp, 'x', fopen(__FILE__, 'r'), 0));
25 var_dump(ftp_get($ftp, 'x', 'y', 0));
26 var_dump(ftp_mdtm($ftp, 'x'));
27 var_dump(ftp_mkdir($ftp, 'x'));
29 var_dump(ftp_nb_fget($ftp, STDOUT, 'x', 0));
30 var_dump(ftp_nb_fput($ftp, 'x', fopen(__FILE__, 'r'), 0));
/PHP-5.3/ext/standard/
H A Dversioning.c54 #define isdig(x) (isdigit(x)&&(x)!='.') in php_canonicalize_version() argument
55 #define isndig(x) (!isdigit(x)&&(x)!='.') in php_canonicalize_version() argument
56 #define isspecialver(x) ((x)=='-'||(x)=='_'||(x)=='+') in php_canonicalize_version() argument
/PHP-5.3/ext/reflection/tests/
H A Dbug51905.phpt12 public function x($x = 1, $y = array(self::X), $z = parent::Y) {}
16 $method = $clazz->getMethod('x');
24 $x : 1
/PHP-5.3/ext/standard/tests/file/
H A D007_variation7.phpt2 Test fopen and fclose() functions - usage variations - "x" mode
17 /* Test fopen() and fclose(): Opening the file in "x" mode,
20 checking for the warning msg when trying to open an existing file in "x" mode,
27 echo "*** Test fopen() & fclose() functions: with 'x' mode ***\n";
28 $file_handle = fopen($file, "x"); //opening the non-existing file in "x" mode, file will be created
39 $file_handle = fopen($file, "x"); //Opening the existing data file in 'x' mode to check for the wa…
46 *** Test fopen() & fclose() functions: with 'x' mode ***
H A D007_variation8.phpt2 Test fopen and fclose() functions - usage variations - "x+" mode
17 /* Test fopen() and fclose(): Opening the file in "x+" mode,
20 checking for the warning msg when trying to open an existing file in "x+" mode,
27 echo "*** Test fopen() & fclose() functions: with 'x+' mode ***\n";
28 $file_handle = fopen($file, "x+"); //opening the non-existing file in "x+" mode, file will be crea…
39 $file_handle = fopen($file, "x+"); //Opening the existing data file in "x+" mode to check for the …
46 *** Test fopen() & fclose() functions: with 'x+' mode ***
/PHP-5.3/Zend/
H A Dzend_config.w32.h57 #define zend_finite(x) _finite(x) argument
58 #define zend_isnan(x) _isnan(x) argument
/PHP-5.3/ext/oci8/tests/
H A Dbug44113.phpt26 for ($x = 0; $x < 70000; $x++) {
28 print "Failed new collection creation on $x\n";
33 print "Completed $x\n";

Completed in 41 milliseconds

12345678910>>...40