(PHP 4, PHP 5)
get_magic_quotes_runtime — magic_quotes_runtime の現在アクティブな設定値を取得する
magic_quotes_runtime の現在アクティブな値を返します。
magic_quotes_runtime がオフの場合に 0、そうでない場合に 1 を返します。
例1 get_magic_quotes_runtime() の例
<?php// magic_quotes_runtime が有効かどうかを調べますif(get_magic_quotes_runtime()){ // 無効にします set_magic_quotes_runtime(false);}?>