{"id":7595,"date":"2024-03-14T06:43:06","date_gmt":"2024-03-14T06:43:06","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/"},"modified":"2025-08-02T18:17:44","modified_gmt":"2025-08-02T18:17:44","slug":"how-do-you-use-the-move_uploaded_file-function-in-php","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/","title":{"rendered":"PHP move_uploaded_file() Function Guide"},"content":{"rendered":"<p>The move_uploaded_file function is used to move uploaded files to a specified destination folder. Its syntax is as follows:<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-title function_ invoke__\">move_uploaded_file<\/span> ( <span class=\"hljs-keyword\">string<\/span> <span class=\"hljs-variable\">$filename<\/span> , <span class=\"hljs-keyword\">string<\/span> <span class=\"hljs-variable\">$destination<\/span> ) : <span class=\"hljs-keyword\">bool<\/span>\r\n<\/code><\/pre>\n<p>The function will return a boolean value indicating whether the moving process was successful, with $filename representing the temporary path of the uploaded file, and $destination representing the path of the target folder.<\/p>\n<p>Here is an example code:<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-variable\">$uploadedFile<\/span> = <span class=\"hljs-variable\">$_FILES<\/span>[<span class=\"hljs-string\">'file'<\/span>][<span class=\"hljs-string\">'tmp_name'<\/span>];\r\n<span class=\"hljs-variable\">$destination<\/span> = <span class=\"hljs-string\">'uploads\/'<\/span> . <span class=\"hljs-variable\">$_FILES<\/span>[<span class=\"hljs-string\">'file'<\/span>][<span class=\"hljs-string\">'name'<\/span>];\r\n\r\n<span class=\"hljs-keyword\">if<\/span> (<span class=\"hljs-title function_ invoke__\">move_uploaded_file<\/span>(<span class=\"hljs-variable\">$uploadedFile<\/span>, <span class=\"hljs-variable\">$destination<\/span>)) {\r\n    <span class=\"hljs-keyword\">echo<\/span> <span class=\"hljs-string\">'\u6587\u4ef6\u79fb\u52a8\u6210\u529f'<\/span>;\r\n} <span class=\"hljs-keyword\">else<\/span> {\r\n    <span class=\"hljs-keyword\">echo<\/span> <span class=\"hljs-string\">'\u6587\u4ef6\u79fb\u52a8\u5931\u8d25'<\/span>;\r\n}\r\n<\/code><\/pre>\n<p>In the example above, $_FILES[&#8216;file&#8217;][&#8216;tmp_name&#8217;] represents the temporary path of the uploaded file, while &#8216;uploads\/&#8217; . $_FILES[&#8216;file&#8217;][&#8216;name&#8217;] represents the path of the destination folder. If the file is moved successfully, it will output &#8220;File moved successfully&#8221;, otherwise it will output &#8220;File moved failed&#8221;.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The move_uploaded_file function is used to move uploaded files to a specified destination folder. Its syntax is as follows: move_uploaded_file ( string $filename , string $destination ) : bool The function will return a boolean value indicating whether the moving process was successful, with $filename representing the temporary path of the uploaded file, and $destination [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[2891,9785,660,8902,326],"class_list":["post-7595","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-file-upload","tag-move_uploaded_file","tag-php","tag-server-side-scripting","tag-web-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP move_uploaded_file() Function Guide - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Learn to use PHP move_uploaded_file() for secure file uploads. Syntax, parameters &amp; examples included.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP move_uploaded_file() Function Guide\" \/>\n<meta property=\"og:description\" content=\"Learn to use PHP move_uploaded_file() for secure file uploads. Syntax, parameters &amp; examples included.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-14T06:43:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-02T18:17:44+00:00\" \/>\n<meta name=\"author\" content=\"Jackson Davis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jackson Davis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/\"},\"author\":{\"name\":\"Jackson Davis\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350\"},\"headline\":\"PHP move_uploaded_file() Function Guide\",\"datePublished\":\"2024-03-14T06:43:06+00:00\",\"dateModified\":\"2025-08-02T18:17:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/\"},\"wordCount\":112,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"keywords\":[\"File Upload\",\"move_uploaded_file\",\"PHP\",\"server-side scripting\",\"web development\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/\",\"name\":\"PHP move_uploaded_file() Function Guide - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2024-03-14T06:43:06+00:00\",\"dateModified\":\"2025-08-02T18:17:44+00:00\",\"description\":\"Learn to use PHP move_uploaded_file() for secure file uploads. Syntax, parameters & examples included.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP move_uploaded_file() Function Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350\",\"name\":\"Jackson Davis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g\",\"caption\":\"Jackson Davis\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/jacksondavis\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PHP move_uploaded_file() Function Guide - Blog - Silicon Cloud","description":"Learn to use PHP move_uploaded_file() for secure file uploads. Syntax, parameters & examples included.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/","og_locale":"en_US","og_type":"article","og_title":"PHP move_uploaded_file() Function Guide","og_description":"Learn to use PHP move_uploaded_file() for secure file uploads. Syntax, parameters & examples included.","og_url":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2024-03-14T06:43:06+00:00","article_modified_time":"2025-08-02T18:17:44+00:00","author":"Jackson Davis","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Jackson Davis","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/"},"author":{"name":"Jackson Davis","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350"},"headline":"PHP move_uploaded_file() Function Guide","datePublished":"2024-03-14T06:43:06+00:00","dateModified":"2025-08-02T18:17:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/"},"wordCount":112,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"keywords":["File Upload","move_uploaded_file","PHP","server-side scripting","web development"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/","url":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/","name":"PHP move_uploaded_file() Function Guide - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2024-03-14T06:43:06+00:00","dateModified":"2025-08-02T18:17:44+00:00","description":"Learn to use PHP move_uploaded_file() for secure file uploads. Syntax, parameters & examples included.","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/how-do-you-use-the-move_uploaded_file-function-in-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"PHP move_uploaded_file() Function Guide"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/55a10b8b0457c35884c25677889ad350","name":"Jackson Davis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2fdb47d6df1226e92380d96973782572a97b0675d098bb914410dec348eb5d29?s=96&d=mm&r=g","caption":"Jackson Davis"},"url":"https:\/\/www.silicloud.com\/blog\/author\/jacksondavis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/7595","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=7595"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/7595\/revisions"}],"predecessor-version":[{"id":152381,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/7595\/revisions\/152381"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=7595"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=7595"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=7595"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}