mirror of
https://github.com/php/php-src.git
synced 2024-12-11 10:54:47 +08:00
15 lines
281 B
PHP
15 lines
281 B
PHP
<?php
|
|
// This script prints "skip" if condition does not meet.
|
|
|
|
/*
|
|
if (!extension_loaded("mbstring") && ini_get("enable_dl")) {
|
|
$dlext = (substr(PHP_OS, 0, 3) == "WIN") ? ".dll" : ".so";
|
|
@dl("mbstring$dlext");
|
|
}
|
|
*/
|
|
|
|
if (!extension_loaded("mbstring")) {
|
|
die("skip\n");
|
|
}
|
|
?>
|