芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/app/Utilities/Translator.php
$file) { if (!is_dir($file)) { $export .= file_get_contents($filename); } } foreach (new \RecursiveIteratorIterator($dir2) as $filename => $file) { if (!is_dir($file)) { $export .= file_get_contents($filename); } } $matches = array(); $t = preg_match_all("/_lang(\(.*?)\)/s", $export, $matches); $result = array_unique($matches[0]); $key = array(); foreach ($result as $word) { //For Single Quote $word = trim(str_replace("$function_name('", "", $word)); $word = trim(str_replace("')", "", $word)); //For Double Quote $word = trim(str_replace("$function_name" . '("', "", $word)); $word = trim(str_replace('")', "", $word)); $word = htmlentities(str_replace('"', '', $word)); $word = htmlentities(str_replace(' ', ' ', $word)); $word = str_replace('&', '&', $word); if ($save_mode == "array") { $key[htmlspecialchars_decode($word)] = htmlspecialchars_decode($word); } } return $key; } }