Contact: aviboots(AT)netvision.net.il
41,314 questions
53,829 answers
573 users
$path = "c:/xampp/htdocs/knowrex.com/index.php"; $file = basename($path); echo "File name: $file<br />"; /* run: File name: index.php */
$path = "c:/xampp/htdocs/knowrex.com/index.php"; $file = basename($path, ".php"); echo "File name: $file<br />"; $file = basename($path, ".c"); echo "File name: $file<br />"; /* run: File name: index File name: index.php */