Changeset 23340
- Timestamp:
- 2014/02/06 10:34:31 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/util/SC_Utils.php
r23281 r23340 2031 2031 if ($level + 1 < $max_depth) { 2032 2032 foreach ($target['children'] as &$child) { 2033 SC_Utils_Ex::addChild($child, $primary_key, $level+ +, $max_depth, $children);2033 SC_Utils_Ex::addChild($child, $primary_key, $level+1, $max_depth, $children); 2034 2034 } 2035 2035 } … … 2092 2092 return array_reverse($arrTrail); 2093 2093 } 2094 2094 2095 2095 /** 2096 2096 * ベースとなるパスと相対パスを比較してファイルが存在する事をチェックする … … 2100 2100 * @return bool true = exists / false does not exist 2101 2101 */ 2102 public function checkFileExistsWithInBasePath($file,$base_path) 2103 { 2102 public function checkFileExistsWithInBasePath($file,$base_path) 2103 { 2104 2104 $arrPath = explode('/', str_replace('\\', '/',$file)); 2105 2105 $arrBasePath = explode('/', str_replace('\\', '/',$base_path));
Note: See TracChangeset
for help on using the changeset viewer.