Guest User

Untitled

a guest
Mar 13th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //cartella
  2.  
  3. mkdir("common/download/$step_id", 0777);
  4.  
  5. //file
  6. $path=$riga_download['path'];
  7.  
  8. $file=$riga_download['mp3_url'];
  9.  
  10. $src="audio_files/".$path."/".$file;
  11. $dest="common/download/".$step_id."/".$file;
  12.  
  13. @copy($src, $dest);
  14. touch($dest, filemtime($src));
Add Comment
Please, Sign In to add comment