get_magic_quotes_runtime

(PHP 4, PHP 5, PHP 7)

get_magic_quotes_runtime获取当前 magic_quotes_runtime 配置选项的激活状态

警告

本函数已自 PHP 7.4.0 起弃用,自 PHP 8.0.0 起移除。强烈建议不要依赖本函数。

说明

get_magic_quotes_runtime(): bool

返回当前 magic_quotes_runtime 配置选项的激活状态。

参数

此函数没有参数。

返回值

magic_quotes_runtime 在关闭时返回 0,否则返回 1。 自 PHP 5.4.0 起始终返回 false

更新日志

版本 说明
7.4.0 弃用此函数。

范例

示例 #1 get_magic_quotes_runtime() 例子

<?php
// 检测 magic_quotes_runtime 是否已经激活
if(get_magic_quotes_runtime())
{
// 关闭功能
set_magic_quotes_runtime(false);
}
?>

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top