쪼렙 as! 풀스택

PHP 코드 수정이 바로 적용되지 않을 때, opcache disable 시키기. 본문

개발 일지/Web & Server

PHP 코드 수정이 바로 적용되지 않을 때, opcache disable 시키기.

코코앱 2020. 11. 19. 16:24

방법 1 - php.ini

opcache.enable=0

 

방법 2 - .htaccess 

php_flag opcache.enable Off

 

방법 3 -  php 파일에

<?php
	ini_set('opcache.enable', '0');
?>
Comments