which function used to get the file name in php?
Answers were Sorted based on User's Feedback
Answer / simran
The file name on the browser system
$file_name=$_FILES[$fieldName]['name'];
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / lakshmi
<?php
$path = "/home/httpd/html/index.php";
$file = basename($path);
$file = basename($path, ".php");
?>
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / naga
$parts = Explode('/', $_SERVER["SCRIPT_NAME"]);
$currentFile = $parts[count($parts) - 1];
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / nilsoft
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"]);
Is This Answer Correct ? | 0 Yes | 0 No |
How do you end a function in python?
Which is faster for or foreach php?
write a note on Testing the web site
What are the special characters you need to escape in double-quoted stings?
What is a http session?
What is difference Between PHP 5 and 7?
How would you determine the size of a file in php?
What is the integer?
What is trim codeigniter?
How can we know the number of days between two given dates using PHP?
8 Answers AZTEC, HCL, Navsoft,
•How do you create subdomains using PHP?
What is the full form of PHP?
28 Answers Apple, Nandhini, PHP,