pre_move_uploaded_file

過濾鉤子
apply_filters( 'pre_move_uploaded_file', null, $file, $new_file, $type )
引數
  • (mixed) $move_new_file If null (default) move the file after the upload.
    Required:
  • (array) $file { Reference to a single element from `$_FILES`. @type string $name The original name of the file on the client machine. @type string $type The mime type of the file, if the browser provided this information. @type string $tmp_name The temporary filename of the file in which the uploaded file was stored on the server. @type int $size The size, in bytes, of the uploaded file. @type int $error The error code associated with this file upload. }
    Required:
  • (string) $new_file Filename of the newly-uploaded file.
    Required:
  • (string) $type Mime type of the newly-uploaded file.
    Required:
定義位置
相關勾子
recovery_mode_emailpre-upload-uiremove_user_from_blogwpmu_upgrade_sitewp_verify_nonce_failed
相關方法
media_upload_fileremove_all_filterswp_max_upload_sizeremove_filterwp_get_upload_dirapache_mod_loaded
引入
4.9.0
棄用
-

pre_move_uploaded_file – 這個鉤子在上傳的檔案被移動到其最終目的地之前被呼叫。開發人員可以使用這個鉤子來修改檔案路徑或以自定義方式處理檔案上傳。

過濾是否在通過所有檢查後短路移動上傳的檔案。

如果從過濾器返回非空值,則將完全跳過移動檔案和任何相關錯誤報告。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$move_new_file = apply_filters( 'pre_move_uploaded_file', null, $file, $new_file, $type );
$move_new_file = apply_filters( 'pre_move_uploaded_file', null, $file, $new_file, $type );
$move_new_file = apply_filters( 'pre_move_uploaded_file', null, $file, $new_file, $type );

常見問題

FAQs
檢視更多 >