Is it possible to save the files retrieved by WGET to the “client side” using PHP system() function?
Test based on djechelon answer:
$targetfile = "C:\Work\test.css";
$url = "http://www.domain.com/temp/style.css";
$foo = system('wget $url > $targetfile');
1 Answer