Home
last modified time | relevance | path

Searched refs:y (Results 51 – 75 of 476) sorted by relevance

12345678910>>...20

/PHP-7.4/Zend/tests/
H A Dindirect_property_access.phpt11 public $y = 'foo';
18 var_dump((new bar)->y); // foo
19 var_dump((new $x)->y); // foo
20 var_dump((new $bar->y)->x); // 1
H A Dclosure_009.phpt12 $y = function ($x) use (&$a) {
21 $y(4);
22 $y(5);
23 $y(6);
H A Dforeach_005.phpt7 foreach($a as &$y) {
8 echo "$x-$y\n";
9 $y++;
/PHP-7.4/ext/fileinfo/tests/
H A Dbug68819_001.phpt9y--a-------a-----a--a--------a----s--------a-------------a-------a--------a----s--------------a---…
/PHP-7.4/ext/gd/tests/
H A Dbug73281.phpt18 list($x, $y) = $coordinate;
19 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
28 list($x, $y) = $coordinate;
29 printf("%3d, %3d: %x\n", $x, $y, imagecolorat($dst, $x, $y));
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)));
36 [y] => 12b
H A Dbug53156.phpt12 function draw_and_check_pixel($x, $y)
16 echo (imagecolorat($img, $x, $y) === $black) ? '+' : '-';
17 imagesetpixel($img, $x, $y, $red);
27 $y = ($y1 + $y2) / 2;
29 draw_and_check_pixel($x1, $y);
31 draw_and_check_pixel($x2, $y);
/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp936_1.phpt26 $item = "�yԇ���ֹ�·��"; // cp936 string
50 getting basename of %s\�yԇ���ֹ�·��5\�yԇ���ֹ�·��4
51 string(15) "�yԇ���ֹ�·��4"
53 string(%d) "%s\�yԇ���ֹ�·��5\�yԇ���ֹ�·��4"
/PHP-7.4/ext/opcache/tests/opt/
H A Ddce_004.phpt13 function foo(int $x, int $y) {
15 $a[1] = $y;
16 $a = $y;
29 L1 (2): CV1($y) = RECV 2
30 L2 (5): CV2($a) = QM_ASSIGN CV1($y)
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcdf_time.c42 #define isleap(y) ((((y) % 4) == 0) && \ argument
43 ((((y) % 100) != 0) || (((y) % 400) == 0)))
56 int y; in cdf_getdays() local
58 for (y = CDF_BASE_YEAR; y < year; y++) in cdf_getdays()
59 days += isleap(y) + 365; in cdf_getdays()
/PHP-7.4/tests/classes/
H A Dfactory_and_singleton_001.phpt54 echo "Create x and y\n";
56 $y = test::factory(2);
60 var_dump($y->get());
66 var_dump($y->get());
68 echo "Destruct y\n";
69 $y = NULL;
84 Create x and y
93 Destruct y
H A Dfactory_and_singleton_002.phpt54 echo "Create x and y\n";
56 $y = test::factory(2);
60 var_dump($y->get());
66 var_dump($y->get());
68 echo "Destruct y\n";
69 $y = NULL;
84 Create x and y
93 Destruct y
H A Dstatic_properties_003_error1.phpt6 protected static $y = 'C::$y';
11 unset($c->y);
17 Fatal error: Uncaught Error: Cannot access protected property C::$y in %s:8
H A Dstatic_properties_003_error2.phpt6 protected static $y = 'C::$y';
11 echo $c->y;
17 Fatal error: Uncaught Error: Cannot access protected property C::$y in %s:8
H A Dstatic_properties_003_error3.phpt6 protected static $y = 'C::$y';
11 $c->y = 1;
17 Fatal error: Uncaught Error: Cannot access protected property C::$y in %s:8
H A Dstatic_properties_003_error4.phpt6 protected static $y = 'C::$y';
12 $c->y =& $ref;
20 Error: Cannot access protected property C::$y in %s:%d
/PHP-7.4/ext/standard/tests/password/
H A Dpassword_get_info.phpt7 var_dump(password_get_info('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y'));
9 var_dump(password_get_info('$2y$11$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y'));
11 var_dump(password_get_info('$2y$11$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100'));
20 string(2) "2y"
31 string(2) "2y"
H A Dpassword_needs_rehash.phpt10 var_dump(password_needs_rehash('', '2y'));
18 var_dump(password_needs_rehash('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y', PASS…
21 var_dump(password_needs_rehash('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y', PASS…
24 var_dump(password_needs_rehash('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y', PASS…
27 var_dump(password_needs_rehash('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y', PASS…
31 var_dump(password_needs_rehash('$2y$'.$cost.'$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y…
34 var_dump(password_needs_rehash('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y', PASS…
/PHP-7.4/ext/reflection/tests/
H A Dbug38465.phpt16 public function y($a = self::Y, $b = Baz::B, $c = 99) {}
51 Bar::y($a = 2)
52 Bar::y($b = 3)
53 Bar::y($c = 99)
59 Bar::y($a = 2)
60 Bar::y($b = 3)
61 Bar::y($c = 99)
H A DReflectionProperty_typed_static.phpt8 public static int $y;
15 $rp = new ReflectionProperty('Test', 'y');
32 Test::$z =& Test::$y;
46 Typed static property Test::$y must not be accessed before initialization
48 Typed property Test::$y must be int, string used
50 Cannot assign string to reference held by property Test::$y of type int
/PHP-7.4/azure/i386/
H A Dapt.yml7 sudo apt-get update -y | true
8 sudo apt-get install -y gcc-multilib
9 sudo apt-get install -y g++-multilib
10 sudo apt-get purge -y libxml2
12 sudo apt-get purge -y libpq5
13 sudo apt-get install -y libc6:i386
14 sudo apt-get install -y bison \
/PHP-7.4/ext/soap/tests/
H A Dserver007.phpt7 function Add($x,$y) {
8 return $x+$y;
10 function Sub($x,$y) {
11 return $x-$y;
/PHP-7.4/ext/date/tests/
H A Dbug48678.phpt7 $y = unserialize(serialize($x));
8 print_r($y);
12 [y] => 3
31 [y] => 3
/PHP-7.4/ext/standard/tests/array/
H A Dbug71334.phpt14 private function _mySort($x, $y)
20 if (!isset($this->a[$y])) {
21 throw new Exception('Missing Y: "' . $y . '"');
24 return $x < $y;
/PHP-7.4/tests/lang/
H A Dbug7515.phpt22 $y=ob_get_contents();
24 if ($x == $y) {
29 y=$y

Completed in 31 milliseconds

12345678910>>...20