We have:\[code\]$path = "/home/httpd/html/index.php";$file = basename($path); // $file is set to "index.php"$file = basename($path, ".php"); // $file is set to "index"$file = 'index'; // the result\[/code\]How can we query a multiple file extensions? Instead of\[code\]$file = basename($path, ".php");\[/code\]something like\[code\]$file = basename($path, ".php,gif,png,jpeg,css,js,html");\[/code\]So, If \[code\]$path = "/home/image.png";\[/code\] \[code\]$file\[/code\] will get value 'image'.I've tryed to use \[code\]pathinfo()\[/code\] and \[code\][filename]\[/code\], but my server doesn't support PHP 5.2.Thanks.