משהו כזה (זה משתנה לפי סוג הקובץ שאתה מנסה להמיר)(אם אתה צריך קובץ ספציפי אשמח לעזור בפרטי)
תן לחכם ויחכם עוד...
<?php
file_put_contents("test.txt",file_get_contents("https://private.call2all.co.il/ym/api/DownloadFile?token=0799413800:ugyfygdgdkjgf&path=ivr2:SaleProducts/sale_products_log.ymgr"));
$array=file_get_contents("test.txt",'r');
$array = preg_split("/\r\n|\n|\r/", $array);
//print_r ($array);
$i=0;
foreach($array as $key){
$i++;
}
$c=0;
while($i>$c){
$regex = '/#/';
$replace = '=';
$string = "$array[$c]";
$a=preg_replace($regex, $replace, $string);
//print $a;
$regex = '/\^/';
$replace = '=';
$string = "$a";
$a=preg_replace($regex, $replace, $string);
$regex = '/\*/';
$replace = '&';
$string = "$a";
$a=preg_replace($regex, $replace, $string);
$s[]=explode("%" , $a);
$c++;
}
print "<pre>";
print_r ($s);