14 lines
240 B
PHP
14 lines
240 B
PHP
--TEST--
|
|
SPL: Spl File Info test getExtension with leading dot
|
|
--FILE--
|
|
<?php
|
|
$file = __DIR__ . '/.test';
|
|
touch($file);
|
|
$fileInfo = new SplFileInfo($file);
|
|
|
|
var_dump($fileInfo->getExtension());
|
|
unlink($file);
|
|
?>
|
|
--EXPECT--
|
|
string(4) "test"
|