if ( !get_magic_quotes_gpc() ) {
#$comment = stripslashes($comment);
#$subject = stripslashes($subject);
} else {
$comment = stripslashes($comment);
$subject = stripslashes($subject);
}
if ( ! get_magic_quotes_gpc() ) {
$comment = addslashes($comment);
$subject = addslashes($subject);
} else {
}
================================
http://man.phpschool.com/manual/en/function.get-magic-quotes-gpc.php
<?php
if (get_magic_quotes_gpc()) {
function maybeaddslashes(&$inthing) { }
function maybestripslashes(&$inthing) {
if (is_array($inthing)) {
foreach ($inthing as $element) {
$element = stripslashes($element);
}
} else {
$inthing = stripslashes($inthing);
}
}
} else {
function maybeaddslashes(&$inthing) {
if (is_array($inthing)) {
foreach ($inthing as $element) {
$element = addslashes($element);
}
} else {
$inthing = addslashes($inthing);
}
}
function maybestripslashes(&$inthing) {}
}
?>
'인터넷정보' 카테고리의 다른 글
php 재컴파일시.. make distclean (0) | 2007.10.16 |
---|---|
php 재컴파일시.. make distclean (0) | 2007.10.16 |
iconv 함수 사용가능토록 (0) | 2007.10.16 |
iconv 함수 사용가능토록 (0) | 2007.10.16 |
get_magic_quotes_gpc() (0) | 2007.10.16 |
table_sql 을 엑셀파일로 다운받기. (0) | 2007.10.16 |
table_sql 을 엑셀파일로 다운받기. (0) | 2007.10.16 |
session_save_path() 2 (0) | 2007.10.16 |
session_save_path() 2 (0) | 2007.10.16 |
디렉토리..class.sh_dir_cls.inc (0) | 2007.10.16 |