5 lines
112 B
PHP
5 lines
112 B
PHP
|
<?php
|
||
|
$path = 'www.example.com/public_html/index.php';
|
||
|
$file = basename($path, ".php");
|
||
|
echo $file."\n";
|
||
|
?>
|