PHP Velho Oeste 2024

linkinfo

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

linkinfoObtém informação sobre uma ligação

Descrição

linkinfo(string $path): int|false

Obtém informação sobre uma ligação.

Esta função é usada para verificar se uma ligação (apontada por path) realmente existe (usando o mesmo método da macro S_ISLNK definida em stat.h).

Parâmetros

path

Caminho para a ligação.

Valor Retornado

linkinfo() retorna o campo st_dev da estrutura stat do Unix C retornado pela chamada de sistema lstat. Retorna um inteiro não negativo em caso de sucesso, -1 caso a ligação não seja encontrada, ou false se uma violação de open.base_dir ocorrer.

Exemplos

Exemplo #1 Exemplo de linkinfo()

<?php

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

?>

Veja Também

  • symlink() - Cria uma ligação simbólica
  • link() - Criando uma ligação rígida
  • readlink() - Retornar o alvo de uma ligação simbólica

add a note add a note

User Contributed Notes 1 note

up
1
rjb at robertjbrown dot com
12 years ago
I expected this function to return FALSE or 0 if a symbolic link did not exist (per the documentation above), but that's not what happened. Reading the man page for the Linux kerne's stat call here: http://www.kernel.org/doc/man-pages/online/pages/man2/stat.2.html it says this:

RETURN VALUE - On success, zero is returned.  On error, -1 is returned, and errno is set appropriately.

... which is what is happening in my case. I am doing a linkinfo('/path/to/file'); on a missing symlink, and I get back a value of -1. As we know, a value of -1 is not going to evaluate to a FALSE or 0.

My point - be careful with return values for missing symlinks.
To Top