How can I get the only name of the current executing file?
Answers were Sorted based on User's Feedback
Answer / hitha
$file_path=$_SERVER["SCRIPT_NAME"];
$break=explode('/',$file_path);
$file_name=$break[count($break)-1];
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / sudeb mandal
<?php
//To get current file name.
$file = $_SERVER["SCRIPT_NAME"];
echo $file;
?>
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / palaniraja.wordpress.com
echo end(explode('/',$_SERVER["SCRIPT_NAME"]));
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nilsoft
There are too many solutions. But i am showing 4 among them
Method 1.
$file = trim($_SERVER["SCRIPT_NAME"],'/');
Method 2.
$file =
substr($_SERVER["SCRIPT_NAME"],1,strlen($_SERVER["SCRIPT_NAME"])-1);
Method 3.
$file = str_replace('/','',$_SERVER["SCRIPT_NAME"]);
Method 4.
$file = basename($_SERVER["SCRIPT_NAME"]);
and so on............
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / bhawani
$name=basename($_SERVER['PHP_SELF']);
echo $name;
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vaishali
basename($_SERVER('PHP_SELF'));
give the current file name
Is This Answer Correct ? | 2 Yes | 3 No |
What is the difference between indexed and associative array?
what are interfaces and Abstart classes
How many escape sequences are recognized in single-quoted strings?
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what’s the problem?
How to get the DNS servers of a domain name?
What is the use of mysqli_real_escape_string() function?
Which is used to maintain the value of a variable over different pages?
Is php pass by reference or value?
1. Write a function to swap two values ? $a = 10; $b = 20; echo $a, $b; swap(); // If u want u can pass parameters echo $a, $b; // It should print 20 , 10
14 Answers Aquasol, Infosys, TCS, Torque Infotech,
What is difference between php and html?
How to upload file in php?
What is difference between php and wordpress?