Content-Length: 37105 | pFad | https://www.php.net/manual/pt_BR/exception.getfile.php

PHP: Exception::getFile - Manual
PHPerKaigi 2025

Exception::getFile

(PHP 5, PHP 7, PHP 8)

Exception::getFileObtém o arquivo no qual a exceção foi criada

Descrição

final public Exception::getFile(): string

Obtém o nome do arquivo de onde a exceção foi criada.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna o nome do arquivo no qual a exceção foi criada.

Exemplos

Exemplo #1 Exemplo da Exception::getFile()

<?php
try {
throw new
Exception;
} catch(
Exception $e) {
echo
$e->getFile();
}
?>

O exemplo acima produzirá algo semelhante a:

/home/bjori/tmp/ex.php

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
-1
Jan
5 years ago
If you're looking to extract only the "ex.php" part of the full "/home/bjori/tmp/ex.php", then use:

<?php
echo basename($e->getFile())
?>

or better yet, esp. if your paths possibly contain non-ASCII characters:

<?php
echo pathinfo($e->getFile())['basename']
?>
To Top








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://www.php.net/manual/pt_BR/exception.getfile.php

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy