wp_delete_file_from_directory
函数
wp_delete_file_from_directory ( $file, $directory )
- 参数
-
-
(string)
$file
Absolute path to the file to delete.- Required: 是
-
(string)
$directory
Absolute path to a directory.- Required: 是
-
(string)
- 返回值
-
- (bool) True on success, false on failure.
- 定义位置
-
-
wp-includes/functions.php
, line 7343
-
wp-includes/functions.php
- 引入
- 4.9.7
- 弃用
- –
如果一个文件的路径在给定的目录内,则删除该文件。
function wp_delete_file_from_directory( $file, $directory ) {
if ( wp_is_stream( $file ) ) {
$real_file = $file;
$real_directory = $directory;
} else {
$real_file = realpath( wp_normalize_path( $file ) );
$real_directory = realpath( wp_normalize_path( $directory ) );
}
if ( false !== $real_file ) {
$real_file = wp_normalize_path( $real_file );
}
if ( false !== $real_directory ) {
$real_directory = wp_normalize_path( $real_directory );
}
if ( false === $real_file || false === $real_directory || strpos( $real_file, trailingslashit( $real_directory ) ) !== 0 ) {
return false;
}
wp_delete_file( $file );
return true;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。


