get_magic_quotes_runtime
(PHP 4, PHP 5)
get_magic_quotes_runtime — 获取当前 magic_quotes_runtime 配置选项的激活状态
说明
bool get_magic_quotes_runtime
( void
)
返回当前 magic_quotes_runtime 配置选项的激活状态。
返回值
   magic_quotes_runtime 在关闭时返回 0,否则返回 1。
   自 PHP 5.4.0 起始终返回 FALSE。
  
更新日志
       版本
       说明
       5.4.0
        总是返回 FALSE,因为魔术引号(magic quotes)功能已经从 PHP 中移除。
  
范例
Example #1 get_magic_quotes_runtime() 例子
<?php
// 检测 magic_quotes_runtime 是否已经激活
if(get_magic_quotes_runtime())
{
// 关闭功能
set_magic_quotes_runtime(false);
}
?>
参见
get_magic_quotes_gpc() - 获取当前 magic_quotes_gpc 的配置选项设置 set_magic_quotes_runtime() - 设置当前 magic_quotes_runtime 配置选项的激活状态