How can I get the only name of the current executing file?

Answers were Sorted based on User's Feedback



How can I get the only name of the current executing file?..

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

How can I get the only name of the current executing file?..

Answer / sudeb mandal

<?php
//To get current file name.
$file = $_SERVER["SCRIPT_NAME"];
echo $file;

?>

Is This Answer Correct ?    5 Yes 1 No

How can I get the only name of the current executing file?..

Answer / palaniraja.wordpress.com

echo end(explode('/',$_SERVER["SCRIPT_NAME"]));

Is This Answer Correct ?    2 Yes 0 No

How can I get the only name of the current executing file?..

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

How can I get the only name of the current executing file?..

Answer / bhawani

$name=basename($_SERVER['PHP_SELF']);

echo $name;

Is This Answer Correct ?    0 Yes 0 No

How can I get the only name of the current executing file?..

Answer / vaishali

basename($_SERVER('PHP_SELF'));


give the current file name

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More PHP Interview Questions

What are magic methods in php

2 Answers   Net Solution,


How does one prevent the following warning ‘warning: cannot modify header information – headers already sent' and why does it occur in the first place?

0 Answers  


What is the difference between php traits vs interfaces?

0 Answers  


Is it more secure to use cookies to transfer session ids?

0 Answers  


What are advantages of .htaccess?

0 Answers  






What is use of mysqli_query in php?

0 Answers  


What is the difference between php and javascript?

0 Answers  


How to parse configuration file in php?

0 Answers  


What is the maximum size of a file that can be uploaded using PHP and how can we change this?

4 Answers  


What is warning – “cannot modify header information – headers already sent”?

0 Answers  


Which function(s) in PHP computes the difference of arrays?

0 Answers  


What is the default session out time?

0 Answers  


Categories