Home Backend Development PHP Problem Does php have its own methods?

Does php have its own methods?

Oct 18, 2022 am 09:51 AM
php

php has its own methods, the commonly used methods are: 1. strlen method, used to obtain the string length and byte length; 2. substr method, used to intercept strings; 3. strtolower method, Used to change all characters to lowercase; 4. strrev method, used to reverse a string; 5. time method, used to get the timestamp of the current time; 6. explode method, used to convert a string according to A specified rule divides the array into segments, and so on.

Does php have its own methods?

The operating environment of this tutorial: windows7 system, PHP version 8.1, DELL G3 computer

Does php come with its own method?

PHP has its own methods.

PHP’s methods are becoming more and more powerful, and it has a very rich set of built-in functions. The following is the commonly used PHP system function methods compiled by the editor for everyone. Welcome to refer to~

String function

strlen: Get the string length, byte length

substr: String interception, get the string (intercept according to bytes)

strchr: similar to substr, intercept from the specified position until the end

strrchr (get the file suffix name): the same as strchr , just look for characters starting from the right

strtolower: All characters are lowercase (for English letters)

strtoupper: All characters are uppercase

strrev: String reverse (Only English can be reversed: English storage has only one byte), reverse by byte

strpos: Find the position where the corresponding character appears in the string (numeric subscript), starting from the leftmost

strrpos: Same as strpos, just start looking from the right side of the string

trim: remove characters on both sides of the function, the default is spaces

Time and date function

time: Get the timestamp of the current time (integer: from 1970 Greenwich Time)

explode: *, convert a string into an array according to a specified rule (usually special characters) Divide into multiple segments, each segment is treated as an element of an array, and an index array is returned.

implode: Glue, combine all the elements in an array according to a specified rule (special characters) The elements are spliced ​​into a string

array_merge: Merge refers to accumulating the elements in the two arrays. If the latter array has the same subscript (key name: association) as the previous array, then The value of the subsequent element will overwrite the previous one; if it is the same subscript of the index, the subscript will be automatically modified and superimposed into the previous array.

Data structure simulation function

array_shift: from * Remove elements from the front of the array, and get the value of the element

array_pop: * Remove the element from the back of the array, and get the value of the element

array_unshift: Push elements in from the front of the array, and get the current array Number of elements

array_push: Push elements from the back of the array to get the number of current array elements

Judge the variable

is_bool: Judge whether it is a Boolean type

is_float: Determine floating point type

is_integer: Determine integer type

is_object: Determine object

is_array: Determine array

is_string: Determine String

is_resource: Judgment resource

is_scalar: scalar is scalar, and the judgment is basic data types: integer, floating point, Boolean and string

is_null: Whether it is empty

is_numeric: Determine numbers or strings composed of pure numbers

gettype: get the data type

settype: change the data type

File* function

opendir(path): open a path resource (read all the data inside the path into memory)

readdir(path resource): read from the folder resource The name of the file pointed to by the current resource pointer. The pointer will move downward one bit

closedir (resource): release the corresponding file resource

scandir (path): read the internal content of a path All file names, returns an array, each element of the array is a file name.

file_exists: Determine whether a file exists (file is a broad sense: path and file)

is_dir: Determine whether a specified path exists (folder)

is_file: Determine a Specify whether the path is a file (file)

mkdir: Create a path, if the path exists, an error will be reported

rmdir: Remove the folder

file_get_contents: From a specified Read the data content in the file.

file_put_contents: Write the specified string to the corresponding file

fopen: Open a file resource

fgetc: c represents character, read one character at a time

fgets: s represents string, which means multiple characters can be read, depending on the specified read length or whether a newline is encountered (only one line of data can be read at most)

Both functions are * Operate on the current resource pointer. After reading, the pointer will be moved down.

fread: Get the specified length of data until the end of the file.

fwrite: Write data to the location of the file resource pointer. , writing things will not move the existing things back at the current location, but will overwrite them

fseek: Specify the pointer to the corresponding location

fclose: Use the corresponding file resource

copy: copy

unlink: delete file

rename: rename file

filemtime: m represents modify, the time when the file was last modified

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of Does php have its own methods?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles