search
HomeBackend DevelopmentPHP TutorialSummary of commonly used functions in php

Summary of commonly used functions in php

Oct 10, 2017 am 09:57 AM
phpSummarizetidy

PHP string functions are an integral part of PHP core. No installation is required to use these functions.

Function Description
addcslashes() Returns adding a backslash before the specified character bar string.
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 the character 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 the uuencode encoded string.
convert_uuencode() Encode a string using the uuencode algorithm.
count_chars() Returns information about the characters used in a string.
crc32() Calculate the 32-bit CRC 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 to 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() An alias for implode().
lcfirst() Convert the first character of 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() Calculate the metaphone key of a string.
money_format() Returns a string formatted as a currency string.
nl_langinfo() Returns specific local information.
nl2br() Insert an HTML newline character before each new line in the string.
number_format() Format a number in thousands groups.
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() Output formatted string.
quoted_printable_decode() Convert quoted-printable string to 8-bit string.
quoted_printable_encode() Convert 8-bit string to quoted-printable string.
quotemeta() Quote metacharacters.
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() Compute the SHA-1 hash of a file.
similar_text() Calculate the similarity of two strings.
soundex() Calculate the soundex key of a string.
sprintf() Write the formatted string into the 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 a string (not case sensitive).
str_pad() Padding the string to the new length.
str_repeat() Repeat the string the specified number of times.
str_replace() Replace some characters in the string (case sensitive).
str_rot13() Perform ROT13 encoding on a string.
str_shuffle() Randomly shuffles 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 (not case sensitive).
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 to search in a string before finding any part of some specified characters.
strip_tags() Strip HTML and PHP tags from strings.
stripcslashes() Remove backslashes added by the addcslashes() function.
stripslashes() Remove backslashes added by addslashes() function.
stripos() Returns the position of the first occurrence of a string in another string (not case sensitive).
stristr() Find the first occurrence of a string in another string (case insensitive).
strlen() Returns the length of the string.
strnatcasecmp() Uses a "natural ordering" algorithm to compare two strings (not case sensitive).
strnatcmp() Uses a "natural ordering" algorithm to compare two strings (case sensitive).
strncasecmp() String comparison of the first n characters (not case sensitive).
strncmp() String comparison of the first n characters (case sensitive).
strpbrk() Find any character in a set of characters in a 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 (not case sensitive).
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.
substr_compare() Compares two strings starting at the specified starting position (binary safe and selective 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() Output formatted string.
vsprintf() Write the formatted string into the variable.
wordwrap() Break the string into a specified number of words

Example during form validation Use function:

function test_input($data) {
  $data = trim($data);            //移除字符串两侧的空白字符和其他字符。
  $data = stripslashes($data);      //删除由 addslashes() 函数添加的反斜杠。
  $data = htmlspecialchars($data);   //把一些预定义的字符转换为 HTML 实体。
  return $data;
}

The above is the detailed content of Summary of commonly used functions 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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)