PHP Warning: Illegal string offset ' ' in ~ ํด๋น ์๋ฌ๋ string ํํ์ ๋ณ์ ๋ค์ ์คํ์ ํํ๋ก '์ธ์' ๊ฐ์ ๋ถ์ด๋ ๊ฒฝ์ฐ ๋ฐ์ํ๋ ์๋ฌ ์ฃผ๋ก string ๋ฌธ์์ด ๋ณ์๋ฅผ array๋ฐฐ์ด๋ก ์ฐฉ๊ฐํ์ฌ ๋ณ์ ๋ค์ ์คํ์ ๊ฐ์ ๋ฃ์ ๋ ๋ฐ์ํ๋ ๊ฒ์ผ๋ก ๋ณด์ ex) $str = "sting"; // Error echo $str['s']; // PHP Warning: Illegal string offset 'str' in /*.html in line xxx // ์๋ฌ ๋ฐ์์ ๋ง๊ธฐ ์ํด(์ฌ์ ์ ๋ฐฐ์ด์ธ์ง ํ์ธ) if(is_array($str)){ echo $str['s']; }else{ echo $str; }