Home
last modified time | relevance | path

Searched refs:y (Results 101 – 125 of 717) sorted by relevance

12345678910>>...29

/php-src/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 Cannot assign string to property Test::$y of type int
50 Cannot assign string to reference held by property Test::$y of type int
H A Dbug60357.phpt7 array $y = ['x' => 'y'],
19 Parameter #1 [ <optional> array $y = ['x' => 'y'] ]
/php-src/Zend/tests/
H A Dclosure_009.phpt12 $y = function ($x) use (&$a) {
21 $y(4);
22 $y(5);
23 $y(6);
H A Dgh7771_3.phpt6 'space1\C' => 'class y{const y="$y";}',
7 'D' => 'class D{const HW=space1\C::y;}'
H A Dctor_promotion_defaults.phpt9 public float $y = 1.0,
23 ["y"]=>
31 ["y"]=>
39 ["y"]=>
/php-src/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-src/ext/phar/tests/
H A Dgh13836.phpt14 $phar['y'] = 'hi2';
16 var_dump(rename("phar://a.phar/x", "phar://a.phar/y"));
19 var_dump($phar['y']);
30 string(%d) "phar://%sgh13836.phar/y"
32 string(1) "y"
/php-src/tests/lang/
H A Dbug7515.phpt21 $y=ob_get_contents();
23 if ($x == $y) {
28 y=$y
/php-src/ext/fileinfo/libmagic/
H A Dcdf_time.c41 #define isleap(y) ((((y) % 4) == 0) && \ argument
42 ((((y) % 100) != 0) || (((y) % 400) == 0)))
55 int y; in cdf_getdays() local
57 for (y = CDF_BASE_YEAR; y < year; y++) in cdf_getdays()
58 days += isleap(y) + 365; in cdf_getdays()
/php-src/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-src/ext/opcache/tests/jit/
H A Dinc_obj_005.phpt10 json_encode($y)->y++;
13 Warning: Undefined variable $y in %sinc_obj_005.php on line 2
15 Fatal error: Uncaught Error: Attempt to increment/decrement property "y" on string in %sinc_obj_005…
H A Dassign_dim_013.phpt12 $obj->y = set_error_handler(function(){});
13 foreach($obj as $y) {
15 $arr = ['' => y];
21 Fatal error: Uncaught Error: Undefined constant "y" in %sassign_dim_013.php:8
H A Dassign_055.phpt11 (y);
15 $ret = $y;
16 } catch (y) {
20 Fatal error: Uncaught Error: Undefined constant "y" in %sassign_055.php:3
H A Dinc_obj_006.phpt17 function __set($x, $y) {
18 echo "set($y)\n";
22 --$a->x->y;
26 Fatal error: Uncaught Error: Attempt to increment/decrement property "y" on int in %sinc_obj_006.ph…
/php-src/Zend/tests/restrict_globals/
H A Dvalid.phpt14 unset($GLOBALS['y']);
16 var_dump(isset($GLOBALS['y']));
20 $y = 1;
22 var_dump($x, $y, $z);
44 Warning: Undefined variable $y in %s on line %d
/php-src/Zend/tests/named_params/
H A Dbacktrace.phpt13 test(1, 2, x: 3, y: 4);
38 ["y"]=>
43 #0 %s(10): test(1, 2, x: 3, y: 4)
61 ["y"]=>
68 #0 %s(%d): test(1, 2, x: 3, y: 4)
/php-src/tests/classes/
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
/php-src/ext/pcre/tests/
H A Dpcre_extra.phpt6 var_dump(preg_match('/\y/', '\y'));
7 var_dump(preg_match('/\y/X', '\y'));
/php-src/Zend/tests/type_declarations/dnf_types/
H A Ddnf_intersection_and_eval.phpt5 eval('abstract class y {function y(): (y&yy)|t {}}');
/php-src/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-src/ext/date/tests/
H A Ddate-lenient.phpt6 print_r( date_parse_from_format( 'm/d/y', $date ) );
7 print_r( date_parse_from_format( 'm/d/y+', $date ) );
8 print_r( date_parse_from_format( '+m/d/y', $date ) );
9 print_r( date_parse_from_format( 'm/d/y++', $date ) );
12 print_r( date_parse_from_format( 'm/d/y+', $date ) );
13 print_r( date_parse_from_format( '+m/d/y', $date ) );

Completed in 31 milliseconds

12345678910>>...29