PHP string common functions
Arrays, strings and databases are the three most commonly used types of functions in our functions. We have not talked about arrays and databases yet. We will explain them in detail when we talk about them.
Of course, there are many string functions in PHP. The two series of strings we most commonly use:
1. Single-byte string processing function
2. Multi-byte string processing function
3. String encoding conversion function
Let’s talk about why we need to learn so many functions:
1. What we learn is Chinese, which is double-byte or three-byte. Foreigners' functions can only handle single-byte strings such as English and numbers, but not Chinese. It cannot meet our functional requirements
2. Sometimes it is necessary to convert between different character encodings, for example: convert GBK to UTF-8
3. These English characters are not displayed on the computer Here are the
that must be processed. Therefore, we need to learn three types of commonly used string functions.
Let’s post a link to the PHP manual for everyone to see:
Look Are you frightened by the manual in this link?
Of course, you don’t need to learn so much. PHP Chinese website has helped you prepare the most commonly used ones that require mandatory litigation.
I have taught you how to use it before, so you can start memorizing functions.
Commonly used functions in PHP:
Note: mb_* and iconv_* can handle multi-byte characters, such as Chinese.
Chinese mainly uses two encoding formats: GBK and utf-8.
GBK and utf-8 are two different encoding committees’ standards for encoding Chinese characters.
They stipulate that GBK is double-byte, that is, one Chinese character occupies 2Bytes.
utf-8 is three bytes, and one Chinese character occupies three bytes of storage space.
- Course Recommendations
- Courseware download
-
IntermediateFront-end Vue3 actual combat [handwritten vue project]
2857 people are watching -
ElementaryAPIPOST tutorial [Popularization of technical concepts related to network communication]
1795 people are watching -
IntermediateIssue 22_Comprehensive actual combat
5521 people are watching -
ElementaryIssue 22_PHP Programming
5172 people are watching -
ElementaryIssue 22_Front-end development
8713 people are watching -
IntermediateBig data (MySQL) video tutorial full version
4525 people are watching -
ElementaryGo language tutorial-full of practical information and no nonsense
2794 people are watching -
ElementaryGO Language Core Programming Course
2814 people are watching -
IntermediateJS advanced and BootStrap learning
2563 people are watching -
IntermediateSQL optimization and troubleshooting (MySQL version)
3374 people are watching -
IntermediateRedis+MySQL database interview tutorial
2963 people are watching -
ElementaryDeliver food or learn programming?
5708 people are watching
Students who have watched this course are also learning
- Let's briefly talk about starting a business in PHP
- Quick introduction to web front-end development
- Large-scale practical Tianlongbabu development of Mini version MVC framework imitating the encyclopedia website of embarrassing things
- Getting Started with PHP Practical Development: PHP Quick Creation [Small Business Forum]
- Login verification and classic message board
- Computer network knowledge collection
- Quick Start Node.JS Full Version
- The front-end course that understands you best: HTML5/CSS3/ES6/NPM/Vue/...[Original]
- Write your own PHP MVC framework (40 chapters in depth/big details/must read for newbies to advance)
- About us Disclaimer Sitemap
- php.cn:Public welfare online PHP training,Help PHP learners grow quickly!
Function name | Description | Instance |
---|---|---|
trim() | Remove spaces or other predefined characters at both ends of the string | "$str = "\r\nHello World!\r\n"; echo trim($str); |
#rtrim() | Remove spaces or other predefined characters on the right side of the string | "$str = "Hello World!\n\n"; echo rtrim ($str);" |
chop() | alias for rtrim() | Same as above |
ltrim() | Remove spaces or other predefined characters on the left side of the string | "$str = "\r\nHello World!"; echo ltrim($str);" |
dirname() | Return to the directory part of the path (we put it in the string function) | echo dirname("c: /testweb/home.php"); |
Pall the string to the specified length | $str = "Hello World "; echo str_pad($str,20,"."); | |
Reuse the specified string | echo str_repeat( ".",13); | |
Split the string into an array | print_r(str_split("Hello")) ; | |
Reverse the string | echo strrev("Hello World!"); | |
Wrap the string according to the specified length | "$str = ""An example on a long word is: Supercalifragulistic""; echo wordwrap( $str,15);" | |
Randomly shuffle all the characters in the string | echo str_shuffle("Hello World" ); | |
Parse the string into a variable | "parse_str("id=23&name=John%20Adams",$myArray ); print_r($myArray);" | ##number_format() |
"echo number_format("1000000 "); echo number_format("1000000",2); echo number_format("1000000",2,"","",""."");" | ##strtolower( ) | |
echo strtolower("Hello WORLD!"); | strtoupper() | |
echo strtoupper("Hello WORLD!"); | ucfirst() | |
echo ucfirst("hello world"); | ucwords() | |
echo ucwords ("hello world"); | htmlentities() | |
$str = ""John & 'Adams' ""; echo htmlentities($str, ENT_COMPAT); | htmlspecialchars() | |
nl2br() | \nEscaped as tag |
echo nl2br("One line.\nAnother line."); |
strip_tags() | Strip HTML, XML and PHP tags | echo strip_tags("Helloworld!" ); |
addcslashes() | Add a backslash before the specified character to escape the characters in the string | $str = ""Hello , my name is John Adams." echo $str; echo addcslashes($str,'m');" |
stripcslashes() | Deleted by addcslashes() Added backslashes | echo stripcslashes("Hello, \my na\me is Kai Ji\m."); |
addslashes() | Add backslashes before specifying predefined characters | $str = "Who's John Adams?";echo addslashes($str); |
stripslashes() | Remove escape characters added by addslashes() | echo stripslashes("Who\'s John Adams?"); |
quotemeta() | Add a backslash before some predefined characters in the string | $str = "Hello world. (can you hear me?)"; echo quotemeta($str); |
chr() | Returns characters from the specified ASCII value | echo chr(052); |
ord() | Return the ASCII value of the first character of the string | echo ord("hello"); |
Compare two strings without case sensitivity | echo strcasecmp("Hello world!","HELLO WORLD!"); | |
Compare two strings case-sensitively | ||
Compare the first n characters of the string Characters, case sensitive | ||
strncasecmp() | Compares the first n characters of the string, case-insensitive | int strncasecmp ( string $str1 , string $str2 , int $len ) |
strnatcmp() | Natural order method compares string length, case-sensitive | int strnatcmp ( string $str1 , string $str2 ) |
strnatcasecmp() | Natural order method compares string length, case-insensitive | int strnatcasecmp ( string $str1 , string $str2 ) |
chunk_split() | Split the string into small chunks | str chunk_split(str $body[,int $len[,str $end]]) |
strtok() | Cut the string | str strtok(str $str,str $token) |
explode() | Use one string as a symbol to split another string | array explode(str $sep,str $str[,int $limit ]) |
implode() | Same as join, concatenate the array values into a string using predetermined characters | string implode ( string $glue , array $pieces ) |
substr() | Intercept string | string substr ( string $string , int $start [, int $length ] ) |
str_replace() | String replacement operation, case sensitive | mix str_replace(mix $search,,mix $replace,mix $subject [,int &$num]) |
str_ireplace() | String replacement operation, case-insensitive | mix str_ireplace ( mix $search , mix $replace , mix $subject [, int &$count ] ) |
substr_count() | Count the number of occurrences of a string in another string | int substr_count ( string $haystack , string $needle [, int $offset = 0 [, int $length ]] ) |
substr_replace() | Replace a certain string in the string with another string | mixed substr_replace (mixed $string, string $replacement, int $start [, int $length]) |
similar_text() | Returns the number of identical characters in the two strings | int similar_text(str $str1,str $str2) |
strchr( ) | Returns the string from the beginning to the end of a string in another string | string strstr (string $str, string $needle, bool $before_needle) |
strrchr() | Returns a string starting from the last occurrence of a string in another string to the end | string strrchr ( string $haystack , mixed $needle ) |
stristr() | Returns a string from the beginning to the end of another string, case-insensitive | string stristr ( string $haystack , mixed $needle [, bool $before_needle = false ] ) |
strtr() | Convert some characters in the string | string strtr ( string $str , string $from , string $to ) |
strpos() | Find the first character in the string Appearance position | int strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) |
stripos() | Find the first occurrence of a character in a string, case-insensitive | int stripos ( string $haystack , string $needle [, int $offset ] ) |
strrpos() | Find the last position of a character in a string | int strrpos ( string $haystack , string $needle [, int $offset = 0 ] ) |
Find the last occurrence of a character in a string, case-insensitive | int strripos ( string $haystack , string $needle [, int $offset ] ) | |
Returns the first string that matches mask Substring length | int strspn ( string $str1 , string $str2 [, int $start [, int $length ]] ) | |
Return the length of the string that does not match the mask | int strcspn ( string $str1 , string $str2 [, int $start [, int $length ]] ) | |
Count the number of words contained in a string | mix str_word_count(str $str,[]) | |
Count string length | int strlen(str $str) | |
Count characters Number of occurrences of all letters in the string (0..255) | mixed count_chars ( string $string [, int $mode ] ) | |
String md5 encoding | $str = "Hello"; echo md5($str) | |
Get the part of the string | string mb_substr ( string $str , int $start [, int $ length = NULL [, string $encoding = mb_internal_encoding() ]] ) | |
Set/get HTTP output character encoding | mixed mb_http_output ( [ string $encoding = mb_http_output() ] ) | |
Get the length of the string | mixed mb_strlen ( string $str [, string $ encoding = mb_internal_encoding() ] ) | |
The string is converted according to the required character encoding | string iconv ( string $in_charset , string $ out_charset , string $str ) | |
Intercept part of the string | ||
Get iconv extended internal configuration variables | ||
Count the number of occurrences of a string | ||
Check whether the string is valid in the specified encoding | ||
Find the last occurrence of a string in a string | ||
Use regular expressions to split multi-byte strings | ||
Interpret the URL into an array |