delete

(None)

deleteVedere unlink() oppure unset()

Descrizione

delete(string $file): void

Questa funzione non esiste, la sua presenza nel manuale vuole essere utile a coloro che cercano nel posto sbagliato le funzioni unlink() o unset().

Vedere anche unlink() per cancellare file, unset() per eliminare variabili.

add a note add a note

User Contributed Notes 1 note

up
-21
Edward Morgan
11 years ago
Unlink refers to the underlying UNIX command, unlink, which removes the symbolic or hard link to the file, not necessarily the file itself. The file is only removed when all links to the file are removed.
To Top