1. 에러메세지
Creating default object from empty value in "path of script" on line XX
2. 원인
PHP-5.4 이상을 대응하지 못하는 코드
3. 해결법 #1
error출력을 끄는것;;;;
* php.ini 파일에 설정 : error_reporting 항목에 E_STRICT 설정 추가
* 워드프레스의 경우 wp-config.php 파일에 " ini_set( 'display_errors', 0 );" 내용을 추가하는...
=> 사실 이것은 정상적인 해결법은 아니다..
4. 해결법 #2
코드를 고쳐야함...
* 문제가 발생하는 코드
$MyObject->MyMember = "Hello";
* 바른 사용 형태
$MyObject = new stdClass();
$MyObject->MyMember = "Hello";
=> 출처 : http://stackoverflow.com/questions/13323993/php-5-4-disable-warning-creating-default-object-from-empty-value
(내가 프로그래머가 아니라서;;;;;)
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
49 | 웹사이트 보안 개발 가이드 20160421 | 관리자 | 2017.07.25 | 143 |
48 | WordPress 4.8 Beta 1 | 관리자 | 2017.05.13 | 143 |
47 | Testing the Fastest Way to Import a Table into MySQL (and some interesting 5.7 performance results) | 관리자 | 2015.12.31 | 143 |
46 | Moving Toward SSL | 관리자 | 2016.12.02 | 142 |
45 | cannot resolve symbol R on android studio | 관리자 | 2016.02.17 | 142 |
44 | WordPress 4.5.2 Security Release | 관리자 | 2016.05.07 | 141 |
43 | 그누보드 짧은 주소 작성 (nginx) | 관리자 | 2016.02.02 | 139 |
42 | Contributor Weekend: Support Forums | 관리자 | 2016.01.23 | 138 |
41 | [MySQL] ERROR 1457 (HY000): Failed to load routine after upgrade or migratrion | 관리자 | 2015.12.31 | 138 |
40 | WordPress 4.8.1 Maintenance Release | 관리자 | 2017.08.03 | 137 |
39 | log timestamp timezone in mysql-5.7 | 관리자 | 2016.05.12 | 136 |
38 | iptables port redirection | 관리자 | 2015.12.31 | 136 |
37 | tcp-wrapper on proftpd (using mod_wrap2, mod_wrap2_file) | 관리자 | 2016.04.19 | 133 |
36 | jsp 에서 사용자가 생성한 java class 호출 하기 | 관리자 | 2015.12.31 | 133 |
35 | apache ab failed requests length | 관리자 | 2016.05.10 | 132 |