Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
14e69d3a
Commit
14e69d3a
authored
Jun 11, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #529 from m-o-g/master
Call static::mkdir(...)
parents
db3bfd09
d97512e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
FileHelper.php
framework/yii/helpers/base/FileHelper.php
+3
-3
No files found.
framework/yii/helpers/base/FileHelper.php
View file @
14e69d3a
...
...
@@ -135,7 +135,7 @@ class FileHelper
* - dirMode: integer, the permission to be set for newly copied directories. Defaults to 0777.
* - fileMode: integer, the permission to be set for newly copied files. Defaults to the current environment setting.
* - filter: callback, a PHP callback that is called for each sub-directory or file.
* If the callback returns false, the the sub-directory or file will not be copied.
* If the callback returns false, the
n
the sub-directory or file will not be copied.
* The signature of the callback should be: `function ($path)`, where `$path` refers the full path to be copied.
* - fileTypes: array, list of file name suffix (without dot). Only files with these suffixes will be copied.
* - only: array, list of patterns that the files or directories should match if they want to be copied.
...
...
@@ -153,7 +153,7 @@ class FileHelper
public
static
function
copyDirectory
(
$src
,
$dst
,
$options
=
array
())
{
if
(
!
is_dir
(
$dst
))
{
mkdir
(
$dst
,
isset
(
$options
[
'dirMode'
])
?
$options
[
'dirMode'
]
:
0777
,
true
);
static
::
mkdir
(
$dst
,
isset
(
$options
[
'dirMode'
])
?
$options
[
'dirMode'
]
:
0777
,
true
);
}
$handle
=
opendir
(
$src
);
...
...
@@ -210,7 +210,7 @@ class FileHelper
* @param array $options options for file searching. Valid options are:
*
* - filter: callback, a PHP callback that is called for each sub-directory or file.
* If the callback returns false, the the sub-directory or file will be excluded from the returning result.
* If the callback returns false, the
n
the sub-directory or file will be excluded from the returning result.
* The signature of the callback should be: `function ($path)`, where `$path` refers the full path to be filtered.
* - fileTypes: array, list of file name suffix (without dot). Only files with these suffixes will be returned.
* - only: array, list of patterns that the files or directories should match if they want to be returned.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment