[HttFoundation] Add File::getExtension() as \SplFileInfo::getExtension() was introduced in PHP 5.3.6

This commit is contained in:
Victor Berchet 2011-06-14 18:18:43 +02:00
parent 38b3b7474f
commit 136b80ae63
2 changed files with 18 additions and 0 deletions

View File

@ -486,6 +486,18 @@ class File extends \SplFileInfo
return $guesser->guess($this->getPathname());
}
/**
* Returns the extension of the file.
*
* \SplFileInfo::getExtension() is not available before PHP 5.3.6
*
* @return string The extension
*/
public function getExtension()
{
return pathinfo($this->getBasename(), PATHINFO_EXTENSION);
}
/**
* Moves the file to a new location.
*

View File

@ -115,6 +115,12 @@ class FileTest extends \PHPUnit_Framework_TestCase
@rmdir($targetDir);
}
public function testGetExtension()
{
$file = new File(__DIR__.'/Fixtures/test.gif');
$this->assertEquals('gif', $file->getExtension());
}
protected function createMockGuesser($path, $mimeType)
{
$guesser = $this->getMock('Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesserInterface');