- <?php
- $invalue = "lunch time : 12 o'clock";
- echo addslashes($invalue);
- // lunch time : 12 o\'clock
- ?>
--------------------------------------------------------------------------------------------
string addslashes ( string $str )
4. 라인
데이터베이스 퀴리 문자에 /(역슬래쉬)를 붙이고 반환합니다.
'(작은 따옴표), "(큰 따옴표), \(역슬래쉬), NULL 문자에 적용됩니다.