SplFileInfo::__toString

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

SplFileInfo::__toStringRetourne le chemin d'un fichier sous forme de chaîne

Description

public SplFileInfo::__toString(): string

Retourne le chemin d'un fichier sous forme de chaîne.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Le chemin, sous forme de chaîne.

Exemples

Exemple #1 Exemple avec SplFileInfo::__toString()

<?php
$info
= new SplFileInfo('foo');
var_dump($info->__toString());
echo
$info.PHP_EOL;

$info = new SplFileInfo('/usr/bin/php');
var_dump($info->__toString());
echo
$info.PHP_EOL;
?>

Résultat de l'exemple ci-dessus est similaire à :

string(3) "foo"
foo
string(12) "/usr/bin/php"
/usr/bin/php

add a note add a note

User Contributed Notes 1 note

up
0
alvaro at demogracia dot com
8 years ago
It returns the exact $file_name string provided in the constructor, without further processing, normalisation or verification.
To Top