Posted
Filed under 프로그래밍

PHP 소스를 압축한다? ㅋㅋㅋㅋ
PHP소스의 주석과 공백을 제거해주는 펑션도 있다.
역시 PHP는 내장 펑션만으로도 너무 훌륭해.

http://www.php.net/manual/en/function.php-strip-whitespace.php


<?php
// PHP comment here
/*
 * Another PHP comment
 */
echo        php_strip_whitespace(__FILE__);
// Newlines are considered whitespace, and are removed too:
do_nothing();
?> 



<?php
echo php_strip_whitespace(__FILE__); do_nothing(); ?>

2013/02/19 11:34 2013/02/19 11:34