search
HomeBackend DevelopmentPHP ProblemWhat are the string methods in php
What are the string methods in phpFeb 24, 2021 am 10:47 AM
phpstring

String methods include: ltrim() that removes blank characters or other characters on the left side of the string, count_chars() that returns the character information used in the string, echo() that outputs one or more strings, explode() that breaks up strings into arrays, hex2bin() that converts hexadecimal values ​​into ASCII characters, html_entity_decode() that converts HTML entities into characters, htmlentities() that converts characters into HTML entities, etc. .

What are the string methods in php

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

php string method (function)

The String function in PHP is a core component of PHP. No installation is required to use these functions.

  • addcslashes(): Returns a string with a backslash added before the specified character.

  • addslashes(): Returns a string with backslashes added before predefined characters.

  • bin2hex(): Convert a string of ASCII characters to a hexadecimal value.

  • chop(): Remove blank characters or other characters on the right side of the string.

  • chr(): Returns characters from the specified ASCII value.

  • chunk_split(): Split the string into a series of smaller parts.

  • convert_cyr_string(): Convert a string from one Cyrillic character set to another.

  • convert_uudecode(): Decode uuencode-encoded string.

  • convert_uuencode(): Use the uuencode algorithm to encode a string.

  • count_chars(): Returns information about the characters used in the string.

  • crc32(): Calculate the 32-bit CRC (cyclic redundancy check) of a string.

  • crypt(): One-way string encryption (hashing).

  • echo(): Output one or more strings.

  • explode(): Break up the string into an array.

  • fprintf(): Write the formatted string to the specified output stream.

  • get_html_translation_table(): Returns the translation table used by htmlspecialchars() and htmlentities().

  • hebrev(): Convert Hebrew text to visible text.

  • hebrevc(): Convert Hebrew text to visible text and convert new lines (\n) to
    .

  • hex2bin(): Convert a string of hexadecimal values ​​to ASCII characters.

  • html_entity_decode(): Convert HTML entities to characters.

  • htmlentities(): Convert characters into HTML entities.

  • htmlspecialchars_decode(): Convert some predefined HTML entities into characters.

  • htmlspecialchars(): Convert some predefined characters into HTML entities.

  • implode(): Returns a string composed of array elements.

  • join(): Alias ​​of implode().

  • lcfirst(): Convert the first character in the string to lowercase.

  • levenshtein(): Returns the Levenshtein distance between two strings.

  • localeconv(): Returns local number and currency format information.

  • ltrim(): Remove whitespace characters or other characters on the left side of the string.

  • md5(): Computes the MD5 hash of a string.

  • md5_file(): Calculate the MD5 hash of the file.

  • metaphone(): Calculates the metaphone key of a string.

  • money_format(): Returns a string formatted as a currency string.

  • nl_langinfo(): Returns the specified local information.

  • nl2br(): Inserts an HTML newline character before each new line in the string.

  • number_format(): Format numbers by thousands grouping.

  • ord(): Returns the ASCII value of the first character in the string.

  • parse_str(): Parse the query string into variables.

  • print(): Output one or more strings.

  • printf(): Outputs a formatted string.

  • quoted_printable_decode(): Convert quoted-printable string to 8-bit string.

  • quoted_printable_encode(): Convert an 8-bit string to a quoted-printable string.

  • quotemeta(): Quote metacharacter.

  • rtrim(): Remove whitespace characters or other characters on the right side of the string.

  • setlocale(): Set regional information (regional information).

  • sha1(): Computes the SHA-1 hash of a string.

  • sha1_file(): Computes the SHA-1 hash of a file.

  • similar_text(): Calculate the similarity of two strings.

  • soundex(): Calculates the soundex key of a string.

  • sprintf(): Write the formatted string into a variable.

  • sscanf(): Parses input from a string according to the specified format.

  • str_getcsv(): Parse the CSV string into an array.

  • str_ireplace(): Replace some characters in the string (case insensitive).

  • str_pad(): Pad the string to the new length.

  • str_repeat(): Repeat the string a specified number of times.

  • str_replace(): Replace some characters in the string (case sensitive).

  • str_rot13(): Performs ROT13 encoding on a string.

  • str_shuffle(): Randomly shuffle all characters in the string.

  • str_split(): Split the string into an array.

  • str_word_count(): Count the number of words in a string.

  • strcasecmp(): Compares two strings (case insensitive).

  • strchr(): Find the first occurrence of a string in another string. (Alias ​​for strstr().)

  • strcmp(): Compares two strings (case sensitive).

  • strcoll(): Compares two strings (according to local settings).

  • strcspn(): Returns the number of characters searched in the string before any specified character is found.

  • strip_tags(): Strips HTML and PHP tags from a string.

  • stripcslashes(): Removes backslashes added by the addcslashes() function.

  • stripslashes(): Removes backslashes added by addslashes() function.

  • stripos(): Returns the position of the first occurrence of a string in another string (case insensitive).

  • stristr(): Find the first occurrence of a string in another string (case insensitive).

  • strlen(): Returns the length of the string. Chinese string processing uses the mb_strlen() function.

  • strnatcasecmp(): Uses a "natural ordering" algorithm to compare two strings (case insensitive).

  • strnatcmp(): Uses a "natural ordering" algorithm to compare two strings (case sensitive).

  • strncasecmp(): String comparison of the first n characters (case insensitive).

  • strncmp(): String comparison of the first n characters (case sensitive).

  • strpbrk(): Search for any one of the specified characters in the string.

  • strpos(): Returns the position of the first occurrence of a string in another string (case sensitive).

  • strrchr(): Find the last occurrence of a string in another string.

  • strrev(): Reverse a string.

  • strripos(): Find the last occurrence of a string in another string (case insensitive).

  • strrpos(): Find the last occurrence of a string in another string (case sensitive).

  • strspn(): Returns the number of specific characters contained in a string.

  • strstr(): Find the first occurrence of a string in another string (case sensitive).

  • strtok(): Split the string into smaller strings.

  • strtolower(): Convert the string to lowercase letters.

  • strtoupper(): Convert the string to uppercase letters.

  • strtr(): Convert specific characters in the string.

  • substr(): Returns a part of the string.

  • mb_substr(): Returns a part of the Chinese string.

  • substr_compare(): Compares two strings starting at a specified starting position (binary safe and optionally case-sensitive).

  • substr_count(): Count the number of times a substring appears in a string.

  • substr_replace(): Replace part of a string with another string.

  • trim(): Remove whitespace characters and other characters on both sides of the string.

  • ucfirst(): Convert the first character in the string to uppercase.

  • ucwords(): Convert the first character of each word in the string to uppercase.

  • vfprintf(): Write the formatted string to the specified output stream.

  • vprintf(): Outputs a formatted string.

  • vsprintf(): Write the formatted string into the variable.

  • wordwrap(): Wrap the string according to the specified length.

[Recommended learning: "PHP Video Tutorial"]

The above is the detailed content of What are the string methods in php. 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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft