소스 검색

Update common.func.php

tags/6.2.6
叙述、别离 2 년 전
부모
커밋
d87c3cdc20
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      src/system/common.func.php

+ 5
- 1
src/system/common.func.php 파일 보기

@@ -65,7 +65,11 @@ if (version_compare(PHP_VERSION, '7.0.0', '>=')) {
if (!function_exists('mysql_close') and function_exists('mysqli_close')) {
function mysql_close($link)
{
return mysqli_close($link);
if ($link) {
return @mysqli_close($link);
} else {
return false;
}
}
}
if (!function_exists('mysql_free_result') and function_exists('mysqli_free_result')) {


불러오는 중...
취소
저장