Home
last modified time | relevance | path

Searched refs:x (Results 251 – 275 of 1216) sorted by relevance

1...<<11121314151617181920>>...49

/PHP-5.6/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.6/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.6/ext/intl/tests/
H A Dspoofchecker_002.phpt10 $x = new Spoofchecker();
12 var_dump($x->areConfusable("hello, world", "goodbye, world"));
13 var_dump($x->areConfusable("hello, world", "hello, world"));
14 var_dump($x->areConfusable("hello, world", "he11o, wor1d"));
/PHP-5.6/ext/json/tests/
H A Dbug63737.phpt8 $x = json_decode($json);
9 var_dump($x);
10 $x = json_decode($json, false, 512, JSON_BIGINT_AS_STRING);
11 var_dump($x);
/PHP-5.6/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
H A D024.phpt13 $x = new C1();
14 $x->z = 4;
15 $x->p3 = 5;
17 $obj = new ReflectionObject($x);
/PHP-5.6/Zend/tests/
H A Dbug67633.phpt6 function id($x) {
7 return $x;
10 function &ref_id(&$x) {
11 return $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;
H A Dns_017.phpt7 function strlen($x) {
11 $x = "strlen";
12 echo $x("Hello"),"\n";
/PHP-5.6/ext/standard/tests/strings/
H A Dvfprintf_basic9.phpt14 $format1 = "%x";
15 $format2 = "%x %x";
16 $format3 = "%x %x %x";
/PHP-5.6/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.6/ext/fileinfo/tests/
H A Dbug69107.phpt18 string(10) "text/x-php"
19 string(10) "text/x-php"
20 string(10) "text/x-php"
21 string(10) "text/x-php"
/PHP-5.6/tests/classes/
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.6/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";
/PHP-5.6/ext/gd/libgd/
H A Dgd2time.c17 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h); in main()
46 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdparttopng.c15 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h); in main()
36 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgdft.c673 x = pen_x + col;
676 if ((x > im->cx2) || (x < im->cx1)) {
727 x = pen_x + col;
730 if (x >= im->sx || x < 0) {
968 penf.x = 0;
971 pen.x = pen.y = 0;
980 penf.x = 0;
985 pen.x = pen.y = 0;
1074 pen.x += (int)(delta.x * cos_a);
1076 penf.x += delta.x;
[all …]
/PHP-5.6/ext/xmlrpc/tests/
H A Dbug50282.phpt8 class One { var $x = 10; }
18 ["x"]=>
29 <name>x</name>
41 ["x"]=>
/PHP-5.6/Zend/
H A Dzend_config.w32.h57 #define zend_finite(x) _finite(x) argument
58 #define zend_isnan(x) _isnan(x) argument
H A Dzend_signal.c282 int x; in zend_signal_activate() local
286 for (x=0; x < sizeof(zend_sigs) / sizeof(*zend_sigs); x++) { in zend_signal_activate()
287 zend_signal_register(zend_sigs[x], zend_signal_handler_defer TSRMLS_CC); in zend_signal_activate()
298 int x; in zend_signal_deactivate() local
306 for (x=0; x < sizeof(zend_sigs) / sizeof(*zend_sigs); x++) { in zend_signal_deactivate()
307 sigaction(zend_sigs[x], NULL, &sa); in zend_signal_deactivate()
309 …r(E_CORE_WARNING, "zend_signal: handler was replaced for signal (%d) after startup", zend_sigs[x]); in zend_signal_deactivate()
325 size_t x; in zend_signal_globals_ctor() local
330 …for (x = 0; x < sizeof(zend_signal_globals->pstorage) / sizeof(*zend_signal_globals->pstorage); ++ in zend_signal_globals_ctor()
331 zend_signal_queue_t *queue = &zend_signal_globals->pstorage[x]; in zend_signal_globals_ctor()
/PHP-5.6/tests/lang/
H A Dbug7515.phpt17 $x=ob_get_contents();
26 if ($x == $y) {
30 x=$x
/PHP-5.6/ext/spl/tests/
H A Dbug46051.phpt6 $x = new splfileinfo(__FILE__);
9 $x->openFile(NULL, NULL, NULL);
12 var_dump($x->getPathName());

Completed in 32 milliseconds

1...<<11121314151617181920>>...49