PHP Velho Oeste 2024

delete

deleteunlink() veya unset() işlevine bakınız

Açıklama

PHP dilinde "delete" ne bir anahtar sözcük ne de bir işlev ismidir. Bir dosyayı silmek istiyorsanız, unlink() işlevini deneyin. Yerel etki alanındaki bir değişkeni silmek için unset() işlevine bakın.

Ayrıca Bakınız

  • unlink() - Bir dosyayı siler
  • unset() - Belirtilen değişkeni bildirimsiz yapar

add a note add a note

User Contributed Notes 1 note

up
-21
Edward Morgan
10 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