[PHP] SQLite3 Escape String
2020. 7. 15. 12:26ㆍ개발자료/Web
반응형
# PHP 5 < 5.4.0, PECL sqlite >= 1.0.0
// 사용법
// sqlite_escape_string ( string $item ) : string
echo sqlite_escape_string('Hello "World" \'\' ...');
// output
// Hello "World" '''' ...
# (PHP 5 >= 5.3.0, PHP 7)
// Description
// public static SQLite3::escapeString ( string $value ) : string
echo SQLite3::escapeString('Hello "World" \'\' ...');
// output
// Hello "World" '''' ...
SQLite3에 사용될 쿼리문을 SQLite3 테이블에 저장할 문자열을 만들때 사용
반응형
'개발자료 > Web' 카테고리의 다른 글
[PHP] .htaccess error_reporting (0) | 2020.07.20 |
---|---|
[PHP] .htaccess short_open_tag 설정 (0) | 2020.07.16 |
[PHP] Base64 Image 파일로 변경하기 (0) | 2020.07.14 |
[PHP] 랜덤 암호화 키, 랜덤 IV 생성 (0) | 2020.07.10 |
CKEditor 이미지 클래스 고정하기 (0) | 2020.07.01 |