PHP 4지원 함수 삭제

This commit is contained in:
kit rio
2021-03-26 02:23:23 +09:00
parent fdc8faf6d0
commit 74ecb1aa55
2 changed files with 0 additions and 20 deletions

View File

@ -2469,22 +2469,6 @@ function get_skin_javascript($skin_path, $dir='')
return $str;
}
// file_put_contents 는 PHP5 전용 함수이므로 PHP4 하위버전에서 사용하기 위함
// http://www.phpied.com/file_get_contents-for-php4/
if (!function_exists('file_put_contents')) {
function file_put_contents($filename, $data) {
$f = @fopen($filename, 'w');
if (!$f) {
return false;
} else {
$bytes = fwrite($f, $data);
fclose($f);
return $bytes;
}
}
}
// HTML 마지막 처리
function html_end()
{

View File

@ -427,10 +427,6 @@ if($config['cf_sms_type'] == 'LMS') {
if (!$fsocket) return false;
set_time_limit(300);
## php4.3.10일경우
## zend 최신버전으로 업해주세요..
## 또는 69번째 줄을 $this->Data as $tmp => $puts 로 변경해 주세요.
foreach($this->Data as $puts) {
$dest = substr($puts,26,11);
fputs($fsocket, $puts);