Yii2 Trying to copy a directory to itself or a subdirectory
Source: Internet
Author: User
KeywordsPhpyii2copydirectory
Added an extension with PHP Composer.phar to report this error.
The last time I met you, it seemed like I just emptied the cache from the Web directory.
But this time it's not.
public static function copyDirectory($src, $dst, $options = [])
{
if ($src === $dst || strpos($dst, $src) === 0) {
throw new InvalidParamException('Trying to copy a directory to itself or a subdirectory.');
}
if (!is_dir($dst)) {
static::createDirectory($dst, isset($options['dirMode']) ? $options['dirMode'] : 0775, true);
}
$handle = opendir($src);
if ($handle === false) {
throw new InvalidParamException("Unable to open directory: $src");
}
Have a similar situation or have a solution to the classmate to mention a wake up AH thank you
Reply content:
Added an extension with PHP Composer.phar to report this error. The last time I met you, it seemed like I just emptied the cache from the Web directory. But this time it's not.
public static function copyDirectory($src, $dst, $options = [])
{
if ($src === $dst || strpos($dst, $src) === 0) {
throw new InvalidParamException('Trying to copy a directory to itself or a subdirectory.');
}
if (!is_dir($dst)) {
static::createDirectory($dst, isset($options['dirMode']) ? $options['dirMode'] : 0775, true);
}
$handle = opendir($src);
if ($handle === false) {
throw new InvalidParamException("Unable to open directory: $src");
}
Have a similar situation or have a solution to the classmate to mention a wake up AH thank you
Re-edited Appasset's SourcePath, you can.
public $sourcePath = '@webroot/adminlte';
public $baseUrl = '@web';
public $css = [
'dist/css/AdminLTE.min.css',
];
public $js = [
'dist/js/app.min.js',
];
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.