mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
Add missing skip checks
This commit is contained in:
parent
ff2140c49d
commit
8c4b0ddde5
@ -1,7 +1,11 @@
|
||||
--TEST--
|
||||
Test oniguruma stack limit
|
||||
--SKIPIF--
|
||||
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
|
||||
<?php
|
||||
extension_loaded('mbstring') or die('skip mbstring not available');
|
||||
extension_loaded('iconv') or die('skip iconv not available');
|
||||
if (!function_exists('mb_ereg_replace')) die('skip mb_ereg_replace not available');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
function mb_trim( $string, $chars = "", $chars_array = array() )
|
||||
|
Loading…
Reference in New Issue
Block a user