示例#1
0
 function data_get_latest_countries()
 {
     global $url, $result_file, $suffix, $mtpl;
     $f2 = __DIR__ . '/' . basename($url) . '.table' . $suffix . '.html';
     if (!file_exists($f2)) {
         $html1 = file_get_contents($url);
         $regex1 = '~<table[^>]*wikitable[^>]*>(.*?)</table>~ims';
         preg_match($regex1, $html1, $m1);
         file_put_contents($f2, $m1[1]);
     }
     $html2 = file_get_contents($f2);
     $tmp_tbl = html_table_to_array($html2);
     $data = [];
     foreach ($tmp_tbl as $v) {
         $id = $v[$mtpl['id']];
         if (!$id) {
             continue;
         }
         $data[$id] = ['code' => $id, 'code3' => $v[$mtpl['code3']], 'num' => $v[$mtpl['num']], 'name' => $v[$mtpl['name']], 'cont' => '', 'active' => 0];
     }
     foreach (['UA', 'RU', 'US', 'DE', 'FR', 'ES', 'GB'] as $c) {
         $data[$c]['active'] = 1;
     }
     $f4 = $result_file;
     file_put_contents($f4, '<?' . 'php' . PHP_EOL . '$data = ' . var_export($data, 1) . ';');
     print_r($data);
 }
示例#2
0
function data_get_latest_languages()
{
    $url = 'https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes';
    $f2 = __DIR__ . '/' . basename($url) . '.table.html';
    if (!file_exists($f2)) {
        $html1 = file_get_contents($url);
        $regex1 = '~<table[^>]*wikitable[^>]*>(.*?)</table>~ims';
        preg_match($regex1, $html1, $m1);
        file_put_contents($f2, $m1[1]);
    }
    $html2 = file_get_contents($f2);
    ////////////////
    $tmp_tbl = html_table_to_array($html2);
    ////////////////
    $data = [];
    foreach ($tmp_tbl as $v) {
        $id = $v[4];
        if (!$id) {
            continue;
        }
        $data[$id] = ['code' => $id, 'name' => $v[2], 'native' => trim($v[3]), 'code3' => $v[5], 'country' => '', 'active' => 0];
    }
    foreach (['en', 'ru', 'uk'] as $c) {
        $data[$c]['active'] = 1;
    }
    $lang_to_country = ['en' => 'us', 'ru' => 'ru', 'uk' => 'ua', 'be' => 'by', 'it' => 'it', 'de' => 'de', 'fr' => 'fr', 'es' => 'es', 'pt' => 'pt', 'da' => 'dk', 'nl' => 'nl', 'no' => 'no', 'fi' => 'fi', 'sv' => 'se', 'bg' => 'bg', 'ro' => 'ro', 'el' => 'gr', 'he' => 'il', 'hi' => 'in', 'pl' => 'pl', 'sk' => 'sk', 'hu' => 'hu', 'kk' => 'kz', 'vi' => 'vn', 'et' => 'ee', 'lt' => 'lt', 'lv' => 'lv', 'ko' => 'kp', 'ja' => 'jp', 'zh' => 'cn'];
    foreach ($lang_to_country as $lang => $country) {
        $data[$lang]['country'] = $country;
    }
    $f4 = __DIR__ . '/languages.php';
    file_put_contents($f4, '<?' . 'php' . PHP_EOL . '$data = ' . var_export($data, 1) . ';');
    print_r($data);
}