get_magic_quotes_runtime

(PHP 4, PHP 5, PHP 7)

get_magic_quotes_runtime Ermittelt die aktuelle Konfiguration von magic_quotes_runtime

Beschreibung

get_magic_quotes_runtime ( void ) : bool

Gibt die aktuelle Konfiguration von magic_quotes_runtime zurück.

Rückgabewerte

Gibt 0 zurück, wenn magic_quotes_gpc ausgeschaltet ist, anderfalls 1. Von PHP 5.4.0 wird immer FALSE zurückgegeben.

Changelog

Version Beschreibung
5.4.0 Gibt immer FALSE zurück, weil das magic quotes Feature von PHP entfernt wurde.

Beispiele

Beispiel #1 get_magic_quotes_runtime() Beispiel

<?php
// Prüfe, ob magic_quotes_runtime aktiv ist
if(get_magic_quotes_runtime())
{
    
// Deaktiviere
    
set_magic_quotes_runtime(false);
}
?>

Siehe auch