3
272
$txt = file_get_contents("metin.txt"); $explode = explode("/", $txt); foreach($explode as $row){ echo $row."<br>"; }
$txt = file_get_contents("test.txt"); $basla = "asd/"; $bitir = "/sda"; preg_match_all('@'.$basla.'(.*?)'.$bitir.'@si',$txt,$lines); foreach($lines[1] as $line){ echo $line; }