get_magic_quotes_gpc方法的作用


get_magic_quotes_gpc — 获取当前 magic_quotes_gpc 的配置选项设置 

说明

1
bool get_magic_quotes_gpc  void )

返回当前 magic_quotes_gpc 配置选项的设置 

记住,尝试在运行时设置 magic_quotes_gpc 将不会生效。 

更多关于 magic_quotes 的信息参见安全一章。 

返回值

如果 magic_quotes_gpc 为关闭时返回 0,否则返回 1。在 PHP 5.4.O 起将始终返回 FALSE 。 

更新日志

版本

说明

php5.4.0 始终返回 FALSE ,因为这个魔术引号功能已经从 PHP 中移除了。  

范例

Example #1 get_magic_quotes_gpc()  例子 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
 // 如果启用了魔术引号
echo $_POST 'lastname' ];              // O\'reilly
echo addslashes $_POST 'lastname' ]);  // O\\\'reilly
// 适用各个 PHP 版本的用法
if get_magic_quotes_gpc ()) {
$lastname stripslashes $_POST 'lastname' ]);
}
else {
$lastname $_POST 'lastname' ];
}
 // 如果使用 MySQL
$lastname mysql_real_escape_string $lastname );
echo $lastname ;  // O\'reilly
$sql "INSERT INTO lastnames (lastname) VALUES (' $lastname ')" ;
?>

注释

Note: 

如果指令 magic_quotes_sybase 为 ON,它会完全覆盖 magic_quotes_gpc。 所以即使 get_magic_quotes_gpc()  返回 TRUE ,双引号、反斜杠或 NUL 都不会被转义。 只有单引号会被转义。 这种情况下它们看上去像:’’