글쓴사람 프로틴
글쓴시간2025년 8월 19일 오후 6시 33분 45초
    제목디렉터리 자동 생성 추가해봤습니다.
평소 잘 사용하고 있어서 조금 추가해봤습니다.

tpl.php
class Tpl {
    protected static function config() {
...
               $htmlRoot =  dirname(__DIR__).'/_template/'; //언더바템플릿과 호환성 유지
        $htmlScriptRoot =  dirname(__DIR__).'/html.php/';

        if($page_mode != "admin"){
            $htmlRoot .= 'mobile/';
            $htmlScriptRoot .= 'mobile/';
        }else{
            $htmlRoot .= 'admin/';
            $htmlScriptRoot .= 'admin/';
        }

...

*TplusScripter.php
   private static function saveScript($scriptRoot, $scriptPath, $sizePad, $header, $script) {

       $scriptRoot = preg_replace(['~\\\\+~','~/$~'], ['/',''], $scriptRoot);
       if (!is_dir($scriptRoot)) {
           if (!mkdir($scriptRoot, 0775, true)) {
               throw new FatalError('[051] Script root path not found and failed to create: '.$scriptRoot);
           }
       }
...
관리자 좋은 아이디어 같네요.. 다음 업데이트 때 반영하겠습니다

감사합니다.
25-08-19 20:34
    이름
비밀번호
 
Since 2003-03-03 hosted on vultr.com