Files
development/www/admin/l10n_test.php
2018-12-14 13:07:10 +09:00

18 lines
222 B
PHP
Executable File

<?php
// debug for L10n issues in php 7.3
// namespace test
ob_start();
$lang = 'en_utf8';
// admin class tests
require 'config.php';
$l = new CoreLibs\Language\L10n($lang);
echo "OK<br>";
ob_end_flush();
// __END__