Home
last modified time | relevance | path

Searched refs:Z (Results 1 – 25 of 195) sorted by relevance

12345678

/PHP-8.1/ext/date/tests/
H A Dbug52808.phpt7 "2008-05-11T15:30:00Z/2007-03-01T13:00:00Z",
8 "2007-05-11T15:30:00Z/2008-03-01T13:00:00Z",
9 "2007-05-11T15:30:00Z 2008-03-01T13:00:00Z",
10 "2007-05-11T15:30:00Z/",
11 "2007-05-11T15:30:00Z",
12 "2007-05-11T15:30:00Z/:00Z",
130 Failed to parse interval (2007-05-11T15:30:00Z/)
131 Failed to parse interval (2007-05-11T15:30:00Z)
132 Unknown or bad format (2007-05-11T15:30:00Z/:00Z)
H A Ddate_format_timezone.phpt19 echo "Z\n";
20 $date = date_create("2020-03-10 22:30:41Z");
29 string(1) "Z"
42 Z
43 string(1) "Z"
H A Ddate_period_bad_iso_format.phpt13 new DatePeriod("R4/2012-07-01T00:00:00Z");
20 new DatePeriod("2012-07-01T00:00:00Z/P7D");
28 DatePeriod::__construct(): ISO interval must contain an interval, "R4/2012-07-01T00:00:00Z" given
29 …ct(): ISO interval must contain an end date or a recurrence count, "2012-07-01T00:00:00Z/P7D" given
H A Dgh10447.phpt2 Bug GH-10447 ('p' format specifier does not yield 'Z' for 00:00)
12 2023-01-25T00:00:00Z
13 2023-01-25T00:00:00Z
/PHP-8.1/ext/soap/tests/schema/
H A Dschema064.phpt45Z</dateTime><time xsi:type="xsd:time">01:02:03Z</time><date xsi:type="xsd:date">1976-04-05Z</date>…
48 string(20) "1976-04-05T01:02:03Z"
50 string(9) "01:02:03Z"
52 string(11) "1976-04-05Z"
54 string(8) "1976-04Z"
56 string(5) "1976Z"
58 string(8) "--04-05Z"
60 string(6) "---05Z"
62 string(7) "--04--Z"
/PHP-8.1/ext/zlib/
H A Dzlib.c80 inflateEnd(&intern->Z); in inflate_context_free_obj()
116 deflateEnd(&intern->Z); in deflate_context_free_obj()
184 deflateEnd(&ctx->Z); in php_zlib_output_handler_ex()
389 z_stream Z; in php_zlib_encode() local
401 Z.avail_in = in_len; in php_zlib_encode()
405 deflateEnd(&Z); in php_zlib_encode()
431 buffer.size = (max && (max < Z->avail_in)) ? max : Z->avail_in; in php_zlib_inflate_rounds()
475 z_stream Z; in php_zlib_decode() local
490 inflateEnd(&Z); in php_zlib_decode()
496 inflateEnd(&Z); in php_zlib_decode()
[all …]
/PHP-8.1/Zend/tests/type_declarations/union_types/
H A Dmultiple_classes.phpt7 public X|Y|Z|int $prop;
8 public function method(X|Y|Z|int $arg): X|Y|Z|int {
49 class Z {}
52 $test->prop = new Z;
54 var_dump($test->method(new Z));
70 Cannot assign stdClass to property Test::$prop of type X|Y|Z|int
71 Test::method(): Argument #1 ($arg) must be of type X|Y|Z|int, stdClass given, called in %s on line …
76 object(Z)#6 (0) {
78 object(Z)#4 (0) {
/PHP-8.1/ext/pcre/tests/
H A Dpreg_replace_error1.phpt13 '/[a-zA-Z]', //Regex without closing delimiter
14 '[a-zA-Z]/', //Regex without opening delimiter
15 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
16 '[A-Z]', '[0-9]'), '/[a-zA-Z]/', //Regex string
39 Arg value is /[a-zA-Z]
44 Arg value is [a-zA-Z]/
49 Arg value is /[a-zA-Z]/F
57 Arg value is /[a-zA-Z]/
H A Dpreg_split_error1.phpt13 '/[a-zA-Z]', //Regex without closing delimiter
14 '[a-zA-Z]/', //Regex without opening delimiter
15 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
16 '[A-Z]', '[0-9]'), '/[a-zA-Z]/', //Regex string
42 Arg value is /[a-zA-Z]
47 Arg value is [a-zA-Z]/
52 Arg value is /[a-zA-Z]/F
60 Arg value is /[a-zA-Z]/
H A Dpreg_grep_error1.phpt13 '/[a-zA-Z]', //Regex without closing delimiter
14 '[a-zA-Z]/', //Regex without opening delimiter
15 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
16 '[A-Z]', '[0-9]'), '/[a-zA-Z]/', //Regex string
43 Arg value is /[a-zA-Z]
48 Arg value is [a-zA-Z]/
53 Arg value is /[a-zA-Z]/F
61 Arg value is /[a-zA-Z]/
H A Dpreg_match_error1.phpt11 '/[a-zA-Z]', //Regex without closing delimiter
12 '[a-zA-Z]/', //Regex without opening delimiter
13 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
14 '[A-Z]', '[0-9]'), '/[a-zA-Z]/', //Regex string
40 Arg value is /[a-zA-Z]
45 Arg value is [a-zA-Z]/
50 Arg value is /[a-zA-Z]/F
58 Arg value is /[a-zA-Z]/
H A Dpreg_match_all_error1.phpt13 '/[a-zA-Z]', //Regex without closing delimiter
14 '[a-zA-Z]/', //Regex without opening delimiter
15 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
16 '[A-Z]', '[0-9]'), '/[a-zA-Z]/', //Regex string
45 Arg value is /[a-zA-Z]
51 Arg value is [a-zA-Z]/
57 Arg value is /[a-zA-Z]/F
67 Arg value is /[a-zA-Z]/
H A Dpreg_replace_callback_error1.phpt13 '/[a-zA-Z]', //Regex without closing delimiter
14 '[a-zA-Z]/', //Regex without opening delimiter
15 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
16 '[A-Z]', '[0-9]'), '/[0-9]/'); //Regex string
36 Arg value is /[a-zA-Z]
41 Arg value is [a-zA-Z]/
46 Arg value is /[a-zA-Z]/F
/PHP-8.1/Zend/tests/type_declarations/intersection_types/variance/
H A Dvalid3.phpt8 interface Z {}
10 class TestParent implements X, Y, Z {}
11 class TestChild implements Z {}
16 public function method1(X&Y&Z $a): X&Y {}
22 public function method1(X&Y $a): X&Y&Z {}
H A Dinvalid6.phpt6 // Let Y and Z be loadable.
8 interface Z {}
14 function method(): Y&Z {}
20 Fatal error: Could not check compatibility between Test2::method(): Y&Z and Test::method(): X&Y, be…
H A Dinvalid_covariance_intersection_to_union3.phpt8 interface Z extends Y {}
10 class TestOne implements X, Z {}
15 public function foo(): X&Z;
25 Fatal error: Declaration of B::foo(): TestOne|TestTwo must be compatible with A::foo(): X&Z in %s o…
/PHP-8.1/ext/mbstring/tests/
H A Dphp_gr_jp_dev_884-2.phpt11 var_dump(mb_ereg_replace("C?$", "Z", "ABC"));
12 var_dump(preg_replace("/C?$/", "Z", "ABC"));
13 var_dump(mb_ereg_replace("C*$", "Z", "ABC"));
14 var_dump(preg_replace("/C*$/", "Z", "ABC"));
/PHP-8.1/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload_error5.phpt24 public function method(Z $a) {}
27 } else if ($class == 'Z') {
28 class Z extends Y {
31 var_dump(new Z);
44 Fatal error: Declaration of Y::method(Z $a) must be compatible with X::method(Y $a) in %s on line %d
/PHP-8.1/Zend/tests/type_declarations/intersection_types/
H A Dtyped_reference.phpt8 interface Z {}
10 class A implements X, Y, Z {}
15 public X&Z $z;
30 Cannot assign B to reference held by property Test::$z of type X&Z
H A Dassigning_intersection_types.phpt8 interface Z {}
11 class TestChild extends TestParent implements Z {}
15 public X&Y&Z $prop;
17 public function method1(X&Y $a): X&Y&Z {
49 Cannot assign TestParent to property A::$prop of type X&Y&Z
/PHP-8.1/ext/standard/tests/strings/
H A Dpack_Z.phpt2 pack()/unpack(): "Z" format
10 pack("Z*", "foo"),
11 unpack("Z*", "foo\0\rbar\0 \t\r\n"),
21 Warning: unpack(): Type Z: not enough input, need 2, have 1 in %s on line %d
/PHP-8.1/Zend/tests/
H A Dbug60536_001.phpt15 class Z extends Y {
20 $a = new Z();
25 Warning: Undefined property: Z::$x in %s on line %d
/PHP-8.1/tests/classes/
H A Dconstants_visibility_004.phpt8 private const Z = 3;
14 var_dump(self::Z);
24 Fatal error: Uncaught Error: Undefined constant B::Z in %s:%d
/PHP-8.1/ext/oci8/tests/
H A Dimp_res_1.phpt156 ["'Z'"]=>
157 string(1) "Z"
212 ["'Z'"]=>
213 string(1) "Z"
269 string(1) "Z"
324 ["'Z'"]=>
325 string(1) "Z"
378 ["'Z'"]=>
379 string(1) "Z"
506 ["'Z'"]=>
[all …]
/PHP-8.1/ext/opcache/tests/
H A Dpreload_variance.inc5 class A extends Z {
8 class B extends Z {
13 class C extends Z {
47 class Z {

Completed in 44 milliseconds

12345678