How to remove the first character from a string in php
Jul 10, 2020 am 09:14 AMThe way PHP removes the first character in a string is through the ltrim() function. This function removes whitespace characters or other predefined characters from the left side of a string. Function syntax: [ltrim()string, charlist].
To remove the first character in a string, there are many methods, as follows:
(recommended learning: php tutorial)
First method: Replacement method
1 2 3 4 |
|
Time to execute 1.000.000 tests: 0.39602184295654 seconds
Second method: Use substr() deletes the first character
1 2 |
|
Time to execute 1.000.000 tests: 5.153294801712 seconds
Third method: Use ltrim() to delete the first character
1 2 |
|
Time to execute 1.000.000 tests: 5.2393000125885 seconds
Fourth method: Use preg_replace() to delete the first character
1 2 |
|
Time to execute 1.000.000 tests: 6.8543920516968 seconds
The above is the detailed content of How to remove the first character from a string in php. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

How To Set Up Visual Studio Code (VS Code) for PHP Development
