Home
last modified time | relevance | path

Searched refs:y (Results 176 – 200 of 468) sorted by relevance

12345678910>>...19

/PHP-7.3/Zend/tests/
H A Dbug69446.phpt12 $bar->y = new stdClass;
29 ["y"]=>
H A Dassign_ref_to_overloaded_prop.phpt14 $y = 5;
15 $test->x =& $y;
H A Ddereference_013.phpt11 public function __call($x, $y) {
13 $this->x[] = $y[0];
H A Dns_001.phpt25 $y = new \test\ns1\Foo;
26 $y->bar();
H A Dbug44141.phpt22 $y = Y::cheat(5);
23 echo $y->x, PHP_EOL;
H A Dcall_user_func_005.phpt7 public static function __callstatic($x, $y) {
8 var_dump($x,$y);
H A Dtemporary_cleaning_013.phpt36 function __set($x, $y) {}
56 function offsetSet($x, $y) {}
69 function offsetSet($x, $y) {}
88 function __set($x, $y) {}
111 function __set($x, $y) {}
127 function offsetSet($x, $y) {}
137 function offsetSet($x, $y) {}
154 function __set($x, $y) {}
162 function offsetSet($x, $y) {}
179 function __set($x, $y) {}
[all …]
/PHP-7.3/ext/standard/tests/serialize/
H A Dbug45706.phpt13 $y = unserialize($s);
14 var_dump($y);
/PHP-7.3/ext/gd/tests/
H A Dbug24594.phpt20 for ($y=0;$y<36;$y+=2) {
21 imagesetpixel($tile,$x,$y,$black);
/PHP-7.3/ext/standard/tests/strings/
H A Ducwords_variation4.phpt33 "P't'y 't it's ",
50 "/test/r\test\\ucwords\t\y\y\\u\3 \yy\ /uu/",
89 string(14) "P't'y 't It's "
122 string(37) "/test/r Est\ucwords \y\y\u \yy\ /uu/"
/PHP-7.3/ext/reflection/tests/
H A Dbug51905.phpt12 public function x($x = 1, $y = array(self::X), $z = parent::Y) {}
25 $y : array (
/PHP-7.3/Zend/tests/try/
H A Dtry_finally_022.phpt7 public $y = 2;
25 foreach([new stdClass()] as $y) {
/PHP-7.3/ext/xmlreader/tests/
H A Dbug42139.phpt14 <!ENTITY x "y">
30 3, #text, y
/PHP-7.3/ext/date/tests/
H A Ddate_interval_create_from_date_string.phpt21 var_dump($i->y);
25 var_dump($i->y);
H A DDateTime_format_basic1.phpt18 var_dump( $date->format( "m.d.y") );
21 var_dump( $date->format( 'h-i-s, j-m-y, it is w Day') );
22 var_dump( $date->format( '\i\t \i\s \t\h\e jS \d\a\y.') );
H A Ddate_basic1.phpt18 var_dump( date("m.d.y", $timestamp) );
21 var_dump( date('h-i-s, j-m-y, it is w Day', $timestamp) );
22 var_dump( date('\i\t \i\s \t\h\e jS \d\a\y.', $timestamp) );
H A Ddate_format_basic1.phpt18 var_dump( date_format($date, "m.d.y") );
21 var_dump( date_format($date, 'h-i-s, j-m-y, it is w Day') );
22 var_dump( date_format($date, '\i\t \i\s \t\h\e jS \d\a\y.') );
H A Dbug28088.phpt8 echo gmdate("m/d/y Hi", strtotime("04/04/04 2345")), "\n";
11 echo gmdate("m/d/y Hi", strtotime("04/04/04 0045"))."\r\n";
H A Dbug66721.phpt7 $y = 'O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-15 02:00:51";s:13:"timezone_type";i:3;s:8:"timezon…
8 var_dump(unserialize($y));
/PHP-7.3/ext/standard/tests/password/
H A Dpassword_deprecated_salts.phpt16 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi"
19 string(60) "$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y"
/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_xclass.c103 uint32_t x, y; in PRIV() local
122 GETCHARINC(y, data); /* macro generates multiple statements */ in PRIV()
128 y = *data++; in PRIV()
130 if (c >= x && c <= y) return !negated; in PRIV()
/PHP-7.3/sapi/phpdbg/
H A Dcreate-test.php109 $y = trim(fgets(STDIN)); variable
110 if ($y !== "y" && $y !== "yes") {
/PHP-7.3/ext/date/lib/
H A Dtimelib.h179 timelib_sll y, m, d; /* Years, Months and Days */ member
207 timelib_sll y, m, d; /* Year, Month, Day */ member
408 timelib_sll timelib_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
411 timelib_sll timelib_iso_day_of_week(timelib_sll y, timelib_sll m, timelib_sll d);
415 timelib_sll timelib_day_of_year(timelib_sll y, timelib_sll m, timelib_sll d);
421 timelib_sll timelib_days_in_month(timelib_sll y, timelib_sll m);
424 void timelib_isoweek_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iw, timeli…
428 void timelib_isodate_from_date(timelib_sll y, timelib_sll m, timelib_sll d, timelib_sll *iy, timeli…
431 void timelib_date_from_isodate(timelib_sll iy, timelib_sll iw, timelib_sll id, timelib_sll *y, time…
439 int timelib_valid_date(timelib_sll y, timelib_sll m, timelib_sll d);
/PHP-7.3/sapi/phpdbg/tests/
H A Dbreakpoints_003.phpt10 y
23 prompt> Do you really want to restart execution? (type y or n): 1234
/PHP-7.3/Zend/
H A Dbench.php52 $x=0; $y=0; $w2=0; $h2=0; $color=0;
56 for ($y=0 ; $y<=$w1; $y=$y+1) {
57 $imc=$s*($y-$h2)+$imcen;
88 for ($y=30; printf("\n"), $C = $y*0.1 - 1.5, $y--;){

Completed in 44 milliseconds

12345678910>>...19