Advertisement
ikamal

image

Nov 9th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. $path_array = wp_upload_dir(); // normal format start
  2.             $file_name   =   pathinfo($user_pic ,PATHINFO_FILENAME).time().".".pathinfo($user_pic ,PATHINFO_EXTENSION);
  3.             $imgtype     =   strtolower(pathinfo($user_pic,PATHINFO_EXTENSION));
  4.             $targetpath        =   $path_array["path"]."/".$file_name;
  5.            
  6.             move_uploaded_file($user_pic, $targetpath );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement