mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
cc56225339
Set deprecate Oniguruma(mbregex) Thank you for Oniguruma. Co-authored-by: Tim Düsterhus <timwolla@googlemail.com>
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
--TEST--
|
|
Bug #69151 (mb_ereg should reject ill-formed byte sequence)
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists('mb_ereg')) die('skip mbregex support not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$str = "\x80";
|
|
|
|
var_dump(false === mb_eregi('.', $str, $matches));
|
|
var_dump([] === $matches);
|
|
|
|
var_dump(NULL === mb_ereg_replace('.', "\\0", $str));
|
|
|
|
var_dump(false === mb_ereg_search_init("\x80", '.'));
|
|
var_dump(false === mb_ereg_search());
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Function mb_eregi() is deprecated since 8.6, because the underlying library is no longer maintained in %s on line %d
|
|
bool(true)
|
|
bool(true)
|
|
|
|
Deprecated: Function mb_ereg_replace() is deprecated since 8.6, because the underlying library is no longer maintained in %s on line %d
|
|
bool(true)
|
|
|
|
Deprecated: Function mb_ereg_search_init() is deprecated since 8.6, because the underlying library is no longer maintained in %s on line %d
|
|
bool(true)
|
|
|
|
Deprecated: Function mb_ereg_search() is deprecated since 8.6, because the underlying library is no longer maintained in %s on line %d
|
|
bool(true)
|