Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
?File1.csv каза:1,"pe6o",1,1,5
2,"to6o",1,1,6
=File2.csv каза:1,"pe6o",1,0,5
2,"to6o",1,1,6
File3.csv каза:1,"pe6o",1,???,5
<?
$file1 = file('file1.txt');
$file2 = file('file2.txt');
function trimz($masiv){
foreach($masiv as $red){
$lq[]= trim($red);
}
return $lq;
}
$fail1 = trimz($file1);
$fail2 = trimz($file2);
echo "Ред/ове който ги/го няма във вторият файл :<br/>";
foreach (array_diff($fail1,$fail2) as $redove){
echo $redove."<br/>\n";
}
?>