linkinfo

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

linkinfoRestituisce informazioni su un collegamento

Descrizione

linkinfo(string $path): int

linkinfo() restituisce il st_dev campo della struttura stat dello Unix C restituita dalla chiamata di sistema lstat. Questa funzione è usata per verificare se un link (puntato da path) esiste davvero (usando lo stesso metodo della macro S_ISLNK definita in stat.h). Restituisce 0 o false in caso di errore.

Example #1 Esempio di uso di linkinfo()

<?php

echo linkinfo('/vmlinuz'); // 835

?>

Nota: Questa funzione non è implementata sulle piattaforme Windows.

Vedere anche symlink(), link() e readlink().

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top