PHP ile dosya yüklemek istiyorum ve ben istediğim hedef klasöre kopyalamak için move_uplload_files kullanmak, her şeyi bu ile çalışıyor:
if (move_uploaded_file($_FILES['uploadfile']['tmp_name'], './uploades/'))
die("success");
else
die("error");
Ama bu çalıştığınızda
$rand = chr(rand(97, 122)). chr(rand(97, 122)). chr(rand(97, 122));
if (move_uploaded_file($_FILES['uploadfile']['tmp_name'], './uploades/'.$rand))
die("success");
else
die("error");
Ben hata alırsınız ve move_uploaded_files gibi can not klasörler oluşturabilirsiniz görünüyor. Bunu nasıl yapabilirim?
Yok eğer Temelde file_put_contents()
yolunu oluşturur gibi yapmak için bir yol arıyorum.