Home Backend Development PHP Tutorial 浅析51个PHP处理字符串的函数_PHP

浅析51个PHP处理字符串的函数_PHP

Jun 01, 2016 pm 12:04 PM
php String processing functions

包括,计算字符串长度、分割字符串、查找字符串等等各个方面。
1.AddSlashes: 字符串加入斜线。
2.bin2hex: 二进位转成十六进位。
3.Chop: 去除连续空白。
4.Chr: 返回序数值的字符。
5.chunk_split: 将字符串分成小段。
6.convert_cyr_string: 转换古斯拉夫字符串成其它字符串。
7.crypt: 将字符串用 DES 编码加密。
8.echo: 输出字符串。
9.explode: 切开字符串。
10.flush: 清出输出缓冲区。
11.get_meta_tags: 抽出文件所有 meta 标记的资料。
12.htmlspecialchars: 将特殊字符转成 HTML 格式。
13.htmlentities: 将所有的字符都转成 HTML 字符串。
14.implode: 将数组变成字符串。
15.1join: 将数组变成字符串。
16.ltrim: 去除连续空白。
17.md5: 计算字符串的 MD5 哈稀。
18.nl2br: 将换行字符转成

19.Ord: 返回字符的序数值。
20.parse_str: 解析 query 字符串成变量。
21.print: 输出字符串。
22.printf: 输出格式化字符串。
23.quoted_printable_decode: 将 qp 编码字符串转成 8 位字符串。
24.QuoteMeta: 加入引用符号。
25.rawurldecode: 从 URL 专用格式字符串还原成普通字符串。
26.rawurlencode: 将字符串编码成 URL 专用格式。
27.setlocale: 配置地域化信息。
28.similar_text: 计算字符串相似度。
29.soundex: 计算字符串的读音值
30.sprintf: 将字符串格式化。
31.strchr: 寻找第一个出现的字符。
32.strcmp: 字符串比较。
33.strcspn: 不同字符串的长度。
34.strip_tags: 去掉 HTML 及 PHP 的标记。
35.strlen: 取得字符串长度。
36.strrpos: 寻找字符串中某字符最后出现处。
37.strpos: 寻找字符串中某字符最先出现处。
38.strrchr: 取得某字符最后出现处起的字符串。
39.strrev: 颠倒字符串。
40.strspn: 找出某字符串落在另一字符串遮罩的数目。
41.strstr: 返回字符串中某字符串开始处至结束的字符串。
42.strtok: 切开字符串。
43.strtolower: 字符串全转为小写。
44.strtoupper: 字符串全转为大写。
45.str_replace: 字符串取代。
46.strtr: 转换某些字符。
47.substr: 取部份字符串。
48.trim: 截去字符串首尾的空格。
49.ucfirst: 将字符串第一个字符改大写。
50.ucwords: 将字符串每个字第一个字母改大写。
51.StripSlashes: 去掉反斜线字符。
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 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 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

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

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