Description
Description
The following code:
<?php
$file = new \SplFileInfo('/dir/anotherdir/basedir//');
var_dump($file->getBasename());
Resulted in this output:
string(0) ""
But I expected this output instead:
string(7) "basedir"
Before PHP 8.1.1 you got basename even with 2 slashes.
PHP Version
8.1.1
Operating System
No response