我在Bluehost上安装WordPress时遇到过一些情况,我的WordPress主题遇到了错误,因为上传文件夹wp-content/uploads不存在。

显然Bluehost cPanel WordPress安装程序不会创建这个文件夹,但HostGator可以。

因此,我需要向我的主题添加代码,以检查文件夹并创建它。


当前回答

试试这个,使用mkdir:

if (!file_exists('path/to/directory')) {
    mkdir('path/to/directory', 0777, true);
}

请注意,0777已经是目录的默认模式,并且仍然可能被当前umask修改。

其他回答

在WordPress中,还有一个非常方便的函数wp_mkdir_p,它将递归地创建一个目录结构。

参考资料来源:

function wp_mkdir_p( $target ) {
    $wrapper = null;

    // Strip the protocol
    if( wp_is_stream( $target ) ) {
        list( $wrapper, $target ) = explode( '://', $target, 2 );
    }

    // From php.net/mkdir user contributed notes
    $target = str_replace( '//', '/', $target );

    // Put the wrapper back on the target
    if( $wrapper !== null ) {
        $target = $wrapper . '://' . $target;
    }

    // Safe mode fails with a trailing slash under certain PHP versions.
    $target = rtrim($target, '/'); // Use rtrim() instead of untrailingslashit to avoid formatting.php dependency.
    if ( empty($target) )
        $target = '/';

    if ( file_exists( $target ) )
        return @is_dir( $target );

    // We need to find the permissions of the parent folder that exists and inherit that.
    $target_parent = dirname( $target );
    while ( '.' != $target_parent && ! is_dir( $target_parent ) ) {
        $target_parent = dirname( $target_parent );
    }

    // Get the permission bits.
    if ( $stat = @stat( $target_parent ) ) {
        $dir_perms = $stat['mode'] & 0007777;
    } else {
        $dir_perms = 0777;
    }

    if ( @mkdir( $target, $dir_perms, true ) ) {

        // If a umask is set that modifies $dir_perms, we'll have to re-set the $dir_perms correctly with chmod()
        if ( $dir_perms != ( $dir_perms & ~umask() ) ) {
            $folder_parts = explode( '/', substr( $target, strlen( $target_parent ) + 1 ) );
            for ( $i = 1; $i <= count( $folder_parts ); $i++ ) {
                @chmod( $target_parent . '/' . implode( '/', array_slice( $folder_parts, 0, $i ) ), $dir_perms );
            }
        }

        return true;
    }

    return false;
}

像这样使用一个helper函数:

function makeDir($path)
{
     $ret = mkdir($path); // use @mkdir if you want to suppress warnings/errors
     return $ret === true || is_dir($path);
}

如果目录已成功创建或已经存在,则返回true;如果目录无法创建,则返回false。

一个更好的选择是这样的(不应该给出任何警告):

function makeDir($path)
{
     return is_dir($path) || mkdir($path);
}

作为现有解决方案的补充,一个效用函数。

function createDir($path, $mode = 0777, $recursive = true) {
  if(file_exists($path)) return true;
  return mkdir($path, $mode, $recursive);
}

createDir('path/to/directory');

如果已经存在或成功创建,则返回true。否则返回false。

如果一个文件夹不存在,则创建该文件夹

考虑到问题的环境。

WordPress。 网络服务器。 假设它是Linux,而不是运行PHP的Windows。

并引用:mkdir

Bool mkdir (string $pathname [, int $mode = 0777 [, Bool $recursive = . [,资源$context]]])

手册说唯一需要的参数是$pathname!

因此,我们可以简单地编码:

<?php
    error_reporting(0); 

    if(!mkdir('wp-content/uploads')){
        // Todo
    }
?>

解释:

除非需要,否则我们不需要传递任何参数或检查文件夹是否存在,甚至不需要传递mode参数;原因如下:

该命令将创建具有0755权限(共享主机文件夹的默认权限)或0777权限(该命令的默认权限)的文件夹。 mode在运行PHP的Windows主机上被忽略。 mkdir命令已经有一个内置的检查器,用于检查文件夹是否存在;所以我们需要检查返回的只有True|False;这不是错误;它只是一个警告,默认情况下,警告在主机服务器上是禁用的。 至于速度,这是更快,如果警告禁用。

这只是研究问题的另一种方式,而不是声称有更好或最优的解决方案。

它在PHP 7、生产服务器和Linux上进行了测试

试试这个,使用mkdir:

if (!file_exists('path/to/directory')) {
    mkdir('path/to/directory', 0777, true);
}

请注意,0777已经是目录的默认模式,并且仍然可能被当前umask修改。