apache_note

(PHP 4, PHP 5, PHP 7, PHP 8)

apache_noteRicava o imposta una variabile nella tabella notes di Apache

Descrizione

apache_note(string $nome_nota, string $valore = ?): string

apache_note() รจ una funzione specifica di Apache che ricava o imposta un valore nella tabella notes di una richiesta HTTP. Se viene invocata con un solo argomento restituisce il valore della nota nome_nota. Se viene chiamata con due argomenti, imposta il valore della nota nome_nota a valore e restituisce il valore precedente della nota nome_nota.

add a note add a note

User Contributed Notes 1 note

up
0
ckm at NOSPAM dot crust dot net
22 years ago
apache_note() does not work on requests to a symlink, only on actual files.  Eg. if index.php is symlinked to login.php, then any apache_note() in login.php will not be available to other apache modules such as logging.
To Top