mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
12 lines
267 B
PHP
12 lines
267 B
PHP
<?php
|
|
|
|
if (!extension_loaded('mbstring')) {
|
|
echo "Skipping mbstring dictionary generation\n";
|
|
return;
|
|
}
|
|
|
|
$dict = "";
|
|
foreach (mb_list_encodings() as $encoding) {
|
|
$dict .= "\"" . $encoding . ",\"\n";
|
|
}
|
|
file_put_contents(__DIR__ . "/dict/mbstring", $dict);
|