get_magic_quotes_runtime

(PHP 4, PHP 5, PHP 7)

get_magic_quotes_runtimemagic_quotes_runtime の現在アクティブな設定値を取得する

説明

get_magic_quotes_runtime ( void ) : bool

magic_quotes_runtime の現在アクティブな値を返します。

返り値

magic_quotes_runtime がオフの場合に 0、そうでない場合に 1 を返します。 PHP 5.4.0 以降は、常に FALSE を返します。

変更履歴

バージョン 説明
5.4.0 マジッククォート機能は削除され、常に FALSE 返すようになりました。

例1 get_magic_quotes_runtime() の例

<?php
// magic_quotes_runtime が有効かどうかを調べます
if(get_magic_quotes_runtime())
{
    
// 無効にします
    
set_magic_quotes_runtime(false);
}
?>

参考