set_time_limit ()와 ini_set ( 'max_execution_time',…)의 차이점 이 두 줄의 코드 사이에 실제 차이가 있습니까? ini_set('max_execution_time', 20*60); set_time_limit(20*60); 현재 소스 살펴보기 : /* {{{ proto bool set_time_limit(int seconds) Sets the maximum time a script can run */ PHP_FUNCTION(set_time_limit) { zend_long new_timeout; char *new_timeout_str; int new_timeout_strlen; zend_string *key; if (zend_parse_parameters(ZEND_N..