GoLang SplFileInfo::getFilename

request it (281)
GoLang replacement for PHP's SplFileInfo::getFilename [edit | history]



Do you know a GoLang replacement for PHP's SplFileInfo::getFilename? Write it!

PHP SplFileInfo::getFilename

PHP original manual for SplFileInfo::getFilename [ show | php.net ]

SplFileInfo::getFilename

(PHP 5 >= 5.1.2, PHP 7)

SplFileInfo::getFilenameGets the filename

Description

public string SplFileInfo::getFilename ( void )

Gets the filename without any path information.

Parameters

This function has no parameters.

Return Values

The filename.

Examples

Example #1 SplFileInfo::getFilename() example

<?php
$info 
= new SplFileInfo('foo.txt');
var_dump($info->getFilename());

$info = new SplFileInfo('/path/to/foo.txt');
var_dump($info->getFilename());

$info = new SplFileInfo('http://www.php.net/');
var_dump($info->getFilename());

$info = new SplFileInfo('http://www.php.net/svn.php');
var_dump($info->getFilename());
?>

The above example will output something similar to:

string(7) "foo.txt"
string(7) "foo.txt"
string(0) ""
string(7) "svn.php" 

See Also