dq_thumb_engine2.php 에러 질문 입니다
관련링크
본문
에러내용.
Deprecated: Function eregi() is deprecated in /home2/addpangc/public_html/addpang/thumbEngine/dq_thumb_engine2.php on line 898
dq_thumb_engine2.php on line 898 라인 내용

에러가 안나게 하려면 어떻게 소스를 변경해야 하는지 알려 주십시요.
부탁 드립니다.
답변 3
eregi 가 php 5.3 버전 이후 부터 권고 하지 않는 함수 이기때문에 메시지가 출력됩니다.
eregi 함수를 preg_metch 로 변경하시거나
eregi 앞에 @붙여 @eregi 이렇게 붙여주세요
<?php
// Turn off all error reporting
error_reporting(0);
// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
// Report all PHP errors
error_reporting(-1);
// Same as error_reporting(E_ALL);
ini_set('error_reporting', E_ALL);
?>
// Turn off all error reporting
error_reporting(0);
// Report simple running errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// Reporting E_NOTICE can be good too (to report uninitialized
// variables or catch variable name misspellings ...)
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
// Report all PHP errors
error_reporting(-1);
// Same as error_reporting(E_ALL);
ini_set('error_reporting', E_ALL);
?>
error_reporting(0); 이거 하시면 경고창 안뜰꺼에요 ..
답변을 작성하시기 전에 로그인 해주세요.