본문 바로가기

프로그래밍/PHP

php파일 호출시 Notice 발생 문제발생) php 파일 호출시 Notice 경고메시지 출력 (반대로 디버깅시에는 Notice를 보는것이 좋습니다.) Notice: Trying to get property of non-object in /home/test.php on line 68 Fatal error: Call to a member function col() on a non-object in /home/test.php on line 69 해결1) php.ini 파일을 찾습니다. APM을 설치 하셨다면 apache 경로에 있을 것입니다. 예) vi /usr/local/apache/php.ini 해결2) error_reporting 을 찾아서 주석(;) 처리 해줍니다 해결3) 아파치를 재실행 해 줍니다. 1. /usr/local/apach.. 더보기
timezone settings 에러 발생 문제발생) php 파일을 불러 올때 아래와 같이 에러 발생 Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Seoul' for 'KST/9.0/no DST' instead in /home/.. 더보기
주유소검색소스 // 최저가 주유소를 검색하는 폼을 출력// 배열로 저장된 시 이름과 구 이름을 자바 스크립트로 출력function printForm () { global $cName; echo " function changeCity(a,b) {  switch(a) {";   foreach($cName as $k=>$v) {    echo "\n\t\tcase '$k':\n";    $i=1;    $len=count($v);    if(!preg_match("/lgtelecom/",$_SERVER[HTTP_USER_AGENT])) echo "\t\t\tb.length=$len;\n";    foreach($v as $city) {     echo "\t\t\tb.options[$i]=new O.. 더보기