mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
21 lines
443 B
PHP
21 lines
443 B
PHP
--TEST--
|
|
Bug #75729: opcache segfault when installing Bitrix
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('mbstring')) die('skip mbstring not loaded'); ?>
|
|
--INI--
|
|
opcache.enable_cli=1
|
|
mbstring.func_overload=2
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(strpos("foo", "o"));
|
|
var_dump(substr("foo", 1));
|
|
var_dump(substr("foo", 1, 1));
|
|
|
|
?>
|
|
--EXPECT--
|
|
Deprecated: The mbstring.func_overload directive is deprecated in Unknown on line 0
|
|
int(1)
|
|
string(2) "oo"
|
|
string(1) "o"
|