blob: b5fb1b025ae6972aeae89c4e96611dc7b8611660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
// This script prints "skip" if condition does not meet.
/*
if (!extension_loaded("mbstring")) {
$dlext = (substr(PHP_OS, 0, 3) == "WIN") ? ".dll" : ".so";
@dl("mbstring$dlext");
}
*/
if (!extension_loaded("mbstring")) {
die("skip\n");
}
?>
|