blob: 7b2be18900aa68b8edd8cfb5171372306c0c1290 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--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"
|