(PHP 4, PHP 5, PHP 7)
get_magic_quotes_runtime — 獲取當(dāng)前 magic_quotes_runtime 配置選項(xiàng)的激活狀態(tài)
magic_quotes_runtime 在關(guān)閉時(shí)返回 0,否則返回 1。
自 PHP 5.4.0 起始終返回 false
。
版本 | 說明 |
---|---|
5.4.0 |
總是返回 false ,因?yàn)槟g(shù)引號(hào)(magic quotes)功能已經(jīng)從 PHP 中移除。
|
示例 #1 get_magic_quotes_runtime() 例子
<?php
// 檢測(cè) magic_quotes_runtime 是否已經(jīng)激活
if(get_magic_quotes_runtime())
{
// 關(guān)閉功能
set_magic_quotes_runtime(false);
}
?>