Skip to content
WJunction - Webmaster Forum

Recent content by sorlaker

  1. S

    How to download from direct urls.

    <?php set_time_limit(0); ini_alter("memory_limit", "1024M"); function download($link){ return file_get_contents($link); } function save($string, $nome){ if (file_put_contents($string, $nome)){ return 1; }else{ return 0; } } if...
Back
Top Bottom