/php-src/Zend/tests/type_declarations/ |
H A D | scalar_strict.phpt | 63 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, string given, called in %s on l… 66 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, float given, called in %s on li… 69 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, float given, called in %s on li… 72 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, string given, called in %s on l… 75 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, string given, called in %s on l… 78 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, string given, called in %s on l… 84 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, float given, called in %s on li… 87 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, true given, called in %s on lin… 90 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, false given, called in %s on li… 93 *** Caught {closure:%s:%d}(): Argument #1 ($i) must be of type int, null given, called in %s on lin… [all …]
|
/php-src/Zend/tests/fibers/ |
H A D | suspend-in-force-close-fiber-after-shutdown.phpt | 2 Suspend in force-closed fiber after shutdown 22 Fatal error: Uncaught FiberError: Cannot suspend in a force-closed fiber in %ssuspend-in-force-clos… 24 #0 %ssuspend-in-force-close-fiber-after-shutdown.php(%d): Fiber::suspend() 27 thrown in %ssuspend-in-force-close-fiber-after-shutdown.php on line %d
|
H A D | fatal-error-in-fiber.phpt | 2 Fatal error in new fiber 7 trigger_error("Fatal error in fiber", E_USER_ERROR); 14 …eprecated since 8.4, throw an exception or call exit with a string message instead in %s on line %d 16 Fatal error: Fatal error in fiber in %sfatal-error-in-fiber.php on line %d
|
/php-src/tests/security/ |
H A D | open_basedir_file_put_contents.phpt | 32 …ut_contents(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the allowed … 34 Warning: file_put_contents(../bad/bad.txt): Failed to open stream: %s in %s on line %d 37 …t_contents(): open_basedir restriction in effect. File(.././bad/bad.txt) is not within the allowed… 39 Warning: file_put_contents(.././bad/bad.txt): Failed to open stream: %s in %s on line %d 42 …ontents(): open_basedir restriction in effect. File(../bad/../bad/bad.txt) is not within the allow… 44 Warning: file_put_contents(../bad/../bad/bad.txt): Failed to open stream: %s in %s on line %d 47 …_contents(): open_basedir restriction in effect. File(./.././bad/bad.txt) is not within the allowe… 49 Warning: file_put_contents(./.././bad/bad.txt): Failed to open stream: %s in %s on line %d 52 …_contents(): open_basedir restriction in effect. File%s/test/bad/bad.txt) is not within the allowe… 54 Warning: file_put_contents%s/test/bad/bad.txt): Failed to open stream: %s in %s on line %d
|
/php-src/ext/standard/tests/strings/ |
H A D | vprintf_variation8.phpt | 88 Warning: Array to string conversion in %s on line %d 90 Warning: Array to string conversion in %s on line %d 92 Warning: Array to string conversion in %s on line %d 94 Warning: Array to string conversion in %s on line %d 96 Warning: Array to string conversion in %s on line %d 98 Warning: Array to string conversion in %s on line %d 100 Warning: Array to string conversion in %s on line %d 102 Warning: Array to string conversion in %s on line %d 104 Warning: Array to string conversion in %s on line %d 106 Warning: Array to string conversion in %s on line %d [all …]
|
/php-src/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_utf16.c | 502 *in = p; in mb_utf16_to_wchar() 508 *in = p; in mb_utf16_to_wchar() 565 *in_len -= (p - *in); in mb_utf16be_to_wchar_default() 566 *in = p; in mb_utf16be_to_wchar_default() 577 uint32_t w = *in++; in mb_wchar_to_utf16be_default() 644 *in = p; in mb_utf16le_to_wchar_default() 655 uint32_t w = *in++; in mb_wchar_to_utf16le_default() 789 *in = p; in mb_utf16be_to_wchar_avx2() 829 in += 8; in mb_wchar_to_utf16be_avx2() 968 *in = p; in mb_utf16le_to_wchar_avx2() [all …]
|
H A D | mbfilter_ucs2.c | 248 unsigned char *p = *in; in mb_ucs2_to_wchar() 255 *in = p; in mb_ucs2_to_wchar() 261 *in = p; in mb_ucs2_to_wchar() 272 unsigned char *p = *in, *e = p + (*in_len & ~1); in mb_ucs2be_to_wchar() 288 *in_len -= (p - *in); in mb_ucs2be_to_wchar() 289 *in = p; in mb_ucs2be_to_wchar() 300 uint32_t w = *in++; in mb_wchar_to_ucs2be() 314 unsigned char *p = *in, *e = p + (*in_len & ~1); in mb_ucs2le_to_wchar() 330 *in_len -= (p - *in); in mb_ucs2le_to_wchar() 331 *in = p; in mb_ucs2le_to_wchar() [all …]
|
H A D | mbfilter_utf32.c | 261 unsigned char *p = *in; in mb_utf32_to_wchar() 270 *in = p; in mb_utf32_to_wchar() 276 *in = p; in mb_utf32_to_wchar() 307 p = *in + *in_len; in mb_utf32be_to_wchar() 310 *in_len -= (p - *in); in mb_utf32be_to_wchar() 311 *in = p; in mb_utf32be_to_wchar() 322 uint32_t w = *in++; in mb_wchar_to_utf32be() 356 p = *in + *in_len; in mb_utf32le_to_wchar() 359 *in_len -= (p - *in); in mb_utf32le_to_wchar() 360 *in = p; in mb_utf32le_to_wchar() [all …]
|
/php-src/Zend/tests/ |
H A D | builtin_in_write_context_error1.phpt | 2 Cannot use built-in functions in write context (assignment) 10 Fatal error: Cannot use result of built-in function in write context in %s on line %d
|
H A D | builtin_in_write_context_error2.phpt | 2 Cannot use built-in functions in write context (reference) 10 Fatal error: Cannot use result of built-in function in write context in %s on line %d
|
/php-src/ext/zip/tests/ |
H A D | zip_entry_compressedsize.phpt | 17 Deprecated: Function zip_open() is deprecated since 8.0, use ZipArchive::open() instead in %s on li… 19 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 21 …ntry_compressedsize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 24 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 26 …ntry_compressedsize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 29 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 31 …ntry_compressedsize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 34 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 36 …ntry_compressedsize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 39 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … [all …]
|
H A D | zip_entry_compressionmethod.phpt | 17 Deprecated: Function zip_open() is deprecated since 8.0, use ZipArchive::open() instead in %s on li… 19 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 21 …y_compressionmethod() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 24 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 26 …y_compressionmethod() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 29 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 31 …y_compressionmethod() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 34 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 36 …y_compressionmethod() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 39 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … [all …]
|
H A D | zip_entry_filesize.phpt | 17 Deprecated: Function zip_open() is deprecated since 8.0, use ZipArchive::open() instead in %s on li… 19 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 21 … zip_entry_filesize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 24 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 26 … zip_entry_filesize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 29 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 31 … zip_entry_filesize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 34 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 36 … zip_entry_filesize() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 39 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … [all …]
|
H A D | zip_entry_name.phpt | 17 Deprecated: Function zip_open() is deprecated since 8.0, use ZipArchive::open() instead in %s on li… 19 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 21 …tion zip_entry_name() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 24 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 26 …tion zip_entry_name() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 29 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 31 …tion zip_entry_name() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 34 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … 36 …tion zip_entry_name() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s on line %d 39 Deprecated: Function zip_read() is deprecated since 8.0, use ZipArchive::statIndex() instead in %s … [all …]
|
/php-src/ext/dom/tests/modern/html/interactions/ |
H A D | Document_body_getter.phpt | 18 echo "--- body in no namespace ---\n"; 24 echo "--- frameset in no namespace ---\n"; 30 echo "--- body in right namespace ---\n"; 36 echo "--- frameset in right namespace ---\n"; 80 --- body in no namespace --- 82 --- frameset in no namespace --- 84 --- body in right namespace --- 86 --- frameset in right namespace --- 88 --- prefixed body in right namespace --- 90 --- prefixed frameset in right namespace --- [all …]
|
/php-src/ext/standard/tests/math/ |
H A D | base_convert_basic.phpt | 36 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 39 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 42 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 45 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 49 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 52 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 55 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 58 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 63 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… 66 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in %s on li… [all …]
|
/php-src/ext/opcache/tests/jit/ |
H A D | shift_right_004.phpt | 23 Warning: Undefined variable $a in %sshift_right_004.php on line 8 25 Warning: Undefined variable $a in %sshift_right_004.php on line 8 27 Warning: Undefined variable $c in %sshift_right_004.php on line 7 29 Warning: Undefined array key 0 in %sshift_right_004.php on line 7 31 Deprecated: Implicit conversion from float %f to int loses precision in %sshift_right_004.php on li… 33 Warning: A non-numeric value encountered in %sshift_right_004.php on line 7 35 Warning: A non-numeric value encountered in %sshift_right_004.php on line 7 37 Fatal error: Uncaught ArithmeticError: Bit shift by negative number in %sshift_right_004.php:8 41 thrown in %sshift_right_004.php on line 8
|
/php-src/ext/dba/tests/ |
H A D | dba_gdbm_creation_matrix.phpt | 28 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 46 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 64 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 76 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 89 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 107 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 119 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 131 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 144 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d 162 Notice: dba_open(): Handler gdbm does locking internally in %s on line %d [all …]
|
H A D | dba_qdbm_creation_matrix.phpt | 28 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 46 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 64 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 76 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 89 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 107 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 119 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 131 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 144 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d 162 Notice: dba_open(): Handler qdbm does locking internally in %s on line %d [all …]
|
/php-src/tests/lang/ |
H A D | passByReference_005.phpt | 173 Warning: Undefined variable $u1 in %s on line %d 175 Warning: Undefined variable $u1 in %s on line %d 179 Warning: Undefined variable $u1 in %s on line %d 181 Warning: Undefined variable $u2 in %s on line %d 183 Warning: Undefined variable $u1 in %s on line %d 185 Warning: Undefined variable $u2 in %s on line %d 189 Warning: Undefined variable $u1 in %s on line %d 191 Warning: Undefined variable $u1 in %s on line %d 195 Warning: Undefined variable $u2 in %s on line %d 197 Warning: Undefined variable $u2 in %s on line %d [all …]
|
/php-src/Zend/tests/float_to_int/ |
H A D | warnings_float_vars.phpt | 54 // 2 warnings in total 61 // 2 warnings in total 96 Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d 99 Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d 102 Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d 105 Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d 108 Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d 111 Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d 114 Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d 149 Warning: String offset cast occurred in %s on line %d [all …]
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug41004.phpt | 16 public $in; 27 $in=new EchoBean(); 28 $in->mandatoryElement="REV"; 29 $in->optionalElement=NULL; 30 $echo->in=$in; 36 … xmlns:ns1="urn:Formation"><SOAP-ENV:Body><ns1:echo><in><mandatoryElement>REV</mandatoryElement></…
|
/php-src/ext/standard/tests/serialize/ |
H A D | invalid_signs_in_lengths.phpt | 21 Warning: unserialize(): Error at offset 0 of 9 bytes in %s on line %d 24 Warning: unserialize(): Error at offset 0 of 9 bytes in %s on line %d 27 Warning: unserialize(): Error at offset 0 of 7 bytes in %s on line %d 30 Warning: unserialize(): Error at offset 0 of 7 bytes in %s on line %d 33 Warning: unserialize(): Error at offset 0 of 20 bytes in %s on line %d 36 Warning: unserialize(): Error at offset 0 of 20 bytes in %s on line %d 39 Warning: unserialize(): Error at offset 0 of 24 bytes in %s on line %d 42 Warning: unserialize(): Error at offset 0 of 24 bytes in %s on line %d 45 Warning: unserialize(): Error at offset 9 of 15 bytes in %s on line %d 48 Warning: unserialize(): Error at offset 9 of 15 bytes in %s on line %d [all …]
|
/php-src/ext/standard/tests/assert/ |
H A D | assert.phpt | 40 Deprecated: PHP Startup: assert.active INI setting is deprecated in Unknown on line 0 44 Deprecated: Constant ASSERT_ACTIVE is deprecated in %s on line %d 46 Deprecated: Function assert_options() is deprecated since 8.3 in %s on line %d 48 Deprecated: Constant ASSERT_WARNING is deprecated in %s on line %d 50 Deprecated: Function assert_options() is deprecated since 8.3 in %s on line %d 52 Deprecated: Constant ASSERT_CALLBACK is deprecated in %s on line %d 54 Deprecated: Function assert_options() is deprecated since 8.3 in %s on line %d 57 Deprecated: Constant ASSERT_CALLBACK is deprecated in %s on line %d 59 Deprecated: Function assert_options() is deprecated since 8.3 in %s on line %d 62 Deprecated: Constant ASSERT_CALLBACK is deprecated in %s on line %d [all …]
|
/php-src/Zend/tests/generators/errors/ |
H A D | yield_in_force_closed_finally_error.phpt | 2 yield cannot be used in a finally block when the generator is force-closed 12 echo "before yield in finally\n"; 14 echo "after yield in finally\n"; 27 before yield in finally 29 Fatal error: Uncaught Error: Cannot yield from finally in a force-closed generator in %s:%d 33 thrown in %s on line %d
|