phpcms v9에서 캐시 끄는 방법
phpcms의 템플릿 캐시 제거
최근에는 phpcms를 이용해서 간단한 걸 만들고 있는데 너무 간단해서 직접 디버깅을 하고 있습니다. ftp로 올려주는데 템플릿 파일을 올려도 프론트엔드가 새로고침이 안되고 생성된 캐시된 php를 삭제하기 위해 캐시디렉토리로 갑니다. 여러번 왔다갔다 하니까 너무 귀찮은데 적당한 글을 못찾겠어요. 인터넷에서 닫으려고 해서 간단하고 투박하게 먼저 캐시를 지웠습니다
global.func.php
function template($module = 'content', $template = 'index', $style = '') if (file_exists(PC_PATH . 'templates' . DIRECTORY_SEPARATOR . $style . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . $template . '.html')) { if (!file_exists($compiledtplfile) || (@filemtime(PC_PATH . 'templates' . DIRECTORY_SEPARATOR . $style . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . $template . '.html') > @filemtime($compiledtplfile))) { $template_cache->template_compile($module, $template, $style); } }
라는 함수가 있습니다. 거기에 있는 if만 빼면 얼마나 간단하고 투박한지 컴파일해야 합니다. 매번 하지만 간단한 소규모 프로젝트에는 필요하지 않습니다. 너무 신경이 쓰입니다.
if (file_exists(PC_PATH . 'templates' . DIRECTORY_SEPARATOR . $style . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . $template . '.html')) { // if (!file_exists($compiledtplfile) || (@filemtime(PC_PATH . 'templates' . DIRECTORY_SEPARATOR . $style . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . $template . '.html') > @filemtime($compiledtplfile))) // { $template_cache->template_compile($module, $template, $style); // } }
PHP 중국어 웹사이트, 수많은 무료 PHPCMS 튜토리얼, 온라인 학습을 환영합니다!
위 내용은 phpcms v9에서 캐시를 끄는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!