Home  >  Article  >  Backend Development  >  Detailed introduction to getting file name

Detailed introduction to getting file name

零下一度
零下一度Original
2017-06-10 10:46:592672browse

The basename() function in PHP gives a string containing the full path to a file. This function returns the basic file name. This article collects several articles about using the PHP basename() function to obtain the file name. This article hopes to help you understand how to use the PHP basename() function to obtain the file name. 1. Detailed explanation of the usage of php basename() function to obtain file name. The php basename() function gives a string containing the full path to a file. This function returns the basic file name. If the filename ends with suffix, this part will also be removed. In Windows, both slash (/) and backslash (\) can be used as directory separators. In other environments, it is a slash (/) 2. Example analysis of __FILE__, dirname and basename usage in PHP This article uses examples to describe the usage of __FILE__, dirname and basename in PHP. Share it with everyone for your reference. The specific method is as follows: __FILE__ the current running file in php

1. php Get the file name summary of the usage of the basename() function

Detailed introduction to getting file name

Introduction: The basename() function in PHP gives a string containing the full path to a file. This function returns the base file name. This article collects several articles about using the PHP basename() function to obtain file names. I hope it will be helpful for everyone to understand using the PHP basename() function to obtain file names.

2. Detailed explanation of the usage of php basename() function to obtain the file name

Detailed introduction to getting file name

Introduction: We talked about how to use the php pathinfo() function to return the file path information. The php dirname() function returns the directory part of the file path. This article mainly introduces the use of php basename. () function returns the file name part of the path.

3. Easy way to get file names and directory names using Bash Shell

Detailed introduction to getting file name

##Introduction: This article mainly introduces the simple method of using Bash Shell to obtain file names and directory names. Parsing paths is one of the basic functions usually implemented by Shell. Friends in need can refer to it

4. Code examples of several ways to obtain the file name suffix in php

Detailed introduction to getting file name

##Introduction: Code examples of several ways to obtain the file name suffix in PHP

5.

php obtains the file name and extension of the url string interception path Function_PHP Tutorial

#Introduction: PHP function to obtain the file name and extension of the url string interception path. The code to copy the file name in php is as follows: function retrieve($url) { preg_match('//([^/]+.[a-z]+)[^/]*$/',$url,$match); return $match[1]; } php gets the file extension copy code

6.

How to get the file name suffix with php_PHP tutorial

Introduction: How to get the file name suffix using php. PHP gets the file suffix name (format file) //Method 1: Copy the code as follows: ?php function extend_1( $file_name ) { $retval = “” ; $pt = strrpos ( $file_name , “.” );

7.

Get the file name suffix_PHP tutorial

Introduction: Get the file name suffix. 1. Write a function, as efficiently as possible, to retrieve the file extension from a standard URL. For example: http://www.sina.com.cn/abc/de/fg.php?id=1 You need to retrieve php or .php ? = "http://ww

8.

A PHP upload class written by myself_PHP tutorial

Introduction: A PHP upload class written by myself. Main functions: File upload, get file name, get file size, randomly generate new file name, get file type, generate thumbnail for image, return thumbnail file name, return after upload

## 9. PHP file search program code_PHP tutorial

Introduction: PHP file search program code. File search is to use php to traverse the directory and then go to each file to obtain the file name for comparison. Then when the file we specify is found, the traversal will stop and the file name and address to be searched will be displayed

##10 .

php Get file name suffix example summary_PHP tutorial

Introduction: php get file name suffix example summary. When uploading PHP files, we need to obtain the file name suffix and then make a simple file type judgment. The method of obtaining the file name suffix in PHP is very simple and there are many ways. Let me summarize it below

[Related Q&A recommendations]:

php basename gets the file name, special symbols will cause garbled characters!

php - Is there a concept of directory pointers?

How does php determine what target is calling it in a method

javascript - About string splicing!

angular.js - angular2 multiple identical components usage problem

The above is the detailed content of Detailed introduction to getting file name. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn