八、字符串的相关操作-PHP Tutorial-php.cn">
Table of Contents
一、判断类型的函数" >一、判断类型的函数
二、获取子串位置" >二、获取子串位置
三、获取子串" >三、获取子串
四、字符串str_ 型函数" >四、字符串str_ 型函数
五、字符串长度" >五、字符串长度
六、翻转字符串" >六、翻转字符串
七、mb_类型字符串函数" >七、mb_类型字符串函数
1、检测字符串的字符编码" >1、检测字符串的字符编码
八、字符串的相关操作" >八、字符串的相关操作
2、大小写转换" >2、大小写转换
3、字符串转时间戳" >3、字符串转时间戳
4、去除HTML 和 PHP 标记" >4、去除HTML 和 PHP 标记
5、ascii转数字 数字转ascii" >5、ascii转数字 数字转ascii
6、json的编码与解码" >6、json的编码与解码
7、换行转
" >7、换行转
8、数组转字符串,字符串转数组" >8、数组转字符串,字符串转数组
9、千位分割格式化" >9、千位分割格式化
10、去空格" >10、去空格
11、转换字符串编码函数" >11、转换字符串编码函数
12、字符串加密函数" >12、字符串加密函数
13、字符串转义与反转义函数" >13、字符串转义与反转义函数
14、按格式返回数据" >14、按格式返回数据
Home Backend Development PHP Tutorial 八、字符串的相关操作

八、字符串的相关操作

Jun 13, 2016 pm 12:13 PM
ascii offset quot str string

PHP常用字符串函数小结

一、判断类型的函数

is_bool()       //判断是否为布尔型is_float()      //判断是否为浮点型is_real()       //同上is_int()        //判断是否为整型is_integer()    //同上is_string()     //判断是否为字符串is_object()     //判断是否为对象is_array()      //判断是否为数组is_null()       //判断是否为nullis_file()       //判断是否为文件is_dir()        //判断是否为目录is_numeric()    //判断是否为数字is_nan()        //判断不是数字is_resource()   //判断是否为资源类型is_a($obj,$classname) //判断对象是否为类的实例                      //可用 if($obj instanceof Classname)
Copy after login

二、获取子串位置

strpos($hs,$nd [,int $offset = 0 ]) //返回nd 在 hs 中首次出现的数字位置。 stripos($hs,$nd [,int $offset = 0 ]) //返回nd 在 hs 中首次出现的数字位置, 不区分大小写。strrpos($hs,$nd [,int $offset = 0 ]) //返回nd 在 hs 中最后一次出现的数字位置。strripos($hs,$nd [,int $offset = 0 ]) //返回nd 在 hs 中最后一次出现的数字位置,不区分大小写。 
Copy after login

三、获取子串

substr($str,$start [,$length]); //获取子串substr_compare($main_str,$str,$offset[,$length]); //子串比较 从offset处开始比较substr_count($hs,$nd [,$offset=0 [,$length]]); //获取子串nd在hs中出现的次数substr_replace($string,$replacement,$start [,$length]); //字符串子串替换                               //用$replacement替换掉$string从start开始长度为length的子串strstr($hys,$nd [,bool $before_needle = false ]);//返回$nd在$hys 第一次出现的地方开始到字符串结束 为止的字符串               //第三个参数如果为true 则返回$nd 之前的字符串stristr($hys,$nd [,bool $before_needle = false ]); //同上,忽略大小写版本strrchr($hys,$nd); //返回$nd在$hys最后一次出现的地方开始到字符串结束 为止的字符串               //一般和 substr(strrchr($hys,$nd),strlen($nd)); 合用strpbrk($haystack,$char_list);//从$char_list中依次匹配单个字符在$haystack中第一次出现的地方                        //到字符串结束的地方 的整个字符串strtok($str,$token); //第一次使用 将字符串按分隔符$token进行分割strtok($token);      //第二次使用	eg.	$string = "This is\tan example\nstring";	/* 使用制表符和换行符作为分界符 */	$tok = strtok($string, " \n\t");	while ($tok !== false) {		echo "Word=$tok<br>";		$tok = strtok(" \n\t");	}
Copy after login

四、字符串str_ 型函数

str_getcsv($str); //将csv文件字符串转换成一个数组str_replace($search,$replace,$subject [,&$count]);//搜索并替换字符串           //第四个参数被指定的话,将会赋值给他替换的次数str_ireplace($search,$replace,$subject [,&$count]);//搜索并替换字符串           //第四个参数被指定的话,将会赋值给他替换的次数 忽略大小写str_shuffle(string $str);//随机打乱字符串str_split($str [,$len=1]);//将字符串转换成一个数组                         //,每个数组单元的长度为$len
Copy after login

五、字符串长度

strlen($str);  //字符串长度
Copy after login

六、翻转字符串

strrev(string $string);// 翻转字符串
Copy after login

七、mb_类型字符串函数

mb_类型字符串与上述字符串函数基本一样,
只是加多一个可选的字符编码参数,用法同上
这里列出一些其他有用函数

1、检测字符串的字符编码

$encode = mb_detect_encoding($lines, array("ASCII","UTF-8","GB2312","GBK","BIG5"));if($encode != "UTF-8"){    $lines = iconv($encode,"UTF-8", $lines);}
Copy after login

八、字符串的相关操作

1、转换字符串类型

strval($str); //转换成字符串类型floatval($str);//转换成浮点型intval($str); //转换成整型
Copy after login

2、大小写转换

strtolower($str); //全部转换成小写strtoupper($str); //全部转换成大写
Copy after login

3、字符串转时间戳

strtotime($str); //时间格式的字符串转换成整型时间戳           //注意设置时区 否则会有 8小时误差
Copy after login

4、去除HTML 和 PHP 标记

strip_tags($str [,$tags]);//去除不含$tags里标签外的所有标签
Copy after login

5、ascii转数字 数字转ascii

chr(int $ascii); //数字转换成asciiord(string $str); //返回$str第一个字符的ascii值
Copy after login

6、json的编码与解码

json_encode($obj/$arr/$str...);//编码成json 格式的字符串json_decode($jsonstr [,$assoc=true]); //解码成对象                         //当$assoc=true 时 返回数组 而非对象
Copy after login

7、换行转

nl2br($str); //字符串 $str 所有新行之前插入'<br>'
Copy after login

8、数组转字符串,字符串转数组

implode($arr,$glue);//将一维数组转换为字符串explode();//字符串转换为数组
Copy after login

9、千位分割格式化

string number_format ( float $number [, int $decimals = 0 ] )string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' ) @param   $number 你要格式化的数字           $decimals 要保留的小数位数           $dec_point 指定小数点显示的字符           $thousands_sep 指定千位分隔符显示的字符 
Copy after login

10、去空格

trim(string $str [,string $charlist ]); //去左右字符ltrim(string $str [,string $charlist ]); //去左字符rtrim(string $str [,string $charlist ]); //去右字符
Copy after login

该函数删除 str 末端的空白字符并返回。

不使用第二个参数, rtrim() 仅删除以下字符:
? " " (ASCII 32 (0x20)),普通空白符。  
? "\t" (ASCII 9 (0x09)),制表符。  
? "\n" (ASCII 10 (0x0A)),换行符。  
? "\r" (ASCII 13 (0x0D)),回车符。  
? "\0" (ASCII 0 (0x00)),NUL 空字节符。  
? "\x0B" (ASCII 11 (0x0B)),垂直制表符。
过滤字符也可由 charlist 参数指定。一般要列出所有希望过滤的字符,
也可以使用 ".." 列出一个字符范围

11、转换字符串编码函数

iconv($in_charset, $out_charset, $str);$in_charset输入字符集$out_charset输出字符集
Copy after login

12、字符串加密函数

sha1($str); md5($str);
Copy after login

13、字符串转义与反转义函数

addcslashes(string $str , string $charlist);//转义字符串中的特殊字符               //eg. addcslashes($str,"\0..\37!@\177..\377");			   //转义ascii [email protected]stripcslashes($str) — 反转义addcslashes()函数转义处理过的字符串  返回反转义后的字符串。可识别类似 C 语言的 \n,\r,... 八进制以及十六进制的描述
Copy after login

14、按格式返回数据

sprintf — 按照要求对数据进行返回,但是不输出	可表示类型如下:	string s 	integer d, u, c, o, x, X, b  	double g, G, e, E, f, F  	eg.	$num = 5;	$location = 'tree';	$format = 'There are %d monkeys in the %s';	echo sprintf($format, $num, $location);
Copy after login





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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

Convert basic data types to strings using Java's String.valueOf() function Convert basic data types to strings using Java's String.valueOf() function Jul 24, 2023 pm 07:55 PM

Convert basic data types to strings using Java's String.valueOf() function In Java development, when we need to convert basic data types to strings, a common method is to use the valueOf() function of the String class. This function can accept parameters of basic data types and return the corresponding string representation. In this article, we will explore how to use the String.valueOf() function for basic data type conversions and provide some code examples to

How to convert char array to string How to convert char array to string Jun 09, 2023 am 10:04 AM

Method of converting char array to string: It can be achieved by assignment. Use {char a[]=" abc d\0efg ";string s=a;} syntax to let the char array directly assign a value to string, and execute the code to complete the conversion.

How many bytes does one ascii character occupy? How many bytes does one ascii character occupy? Mar 09, 2023 pm 03:49 PM

One ascii character occupies 1 byte. ASCII code characters are represented by 7-bit or 8-bit binary encoding in the computer and are stored in one byte, that is, one ASCII code occupies one byte. ASCII code can be divided into standard ASCII code and extended ASCII code. Standard ASCII code is also called basic ASCII code. It uses 7-bit binary numbers (the remaining 1 binary digit is 0) to represent all uppercase and lowercase letters, and the numbers 0 to 9. Punctuation marks, and special control characters used in American English.

2w words detailed explanation String, yyds 2w words detailed explanation String, yyds Aug 24, 2023 pm 03:56 PM

Hello everyone, today I will share with you the basic knowledge of Java: String. Needless to say the importance of the String class, it can be said to be the most used class in our back-end development, so it is necessary to talk about it.

Use Java's String.replace() function to replace characters (strings) in a string Use Java's String.replace() function to replace characters (strings) in a string Jul 25, 2023 pm 05:16 PM

Replace characters (strings) in a string using Java's String.replace() function In Java, strings are immutable objects, which means that once a string object is created, its value cannot be modified. However, you may encounter situations where you need to replace certain characters or strings in a string. At this time, we can use the replace() method in Java's String class to implement string replacement. The replace() method of String class has two types:

Quickly learn about ASCII value conversion in PHP Quickly learn about ASCII value conversion in PHP Mar 28, 2024 pm 06:42 PM

ASCII value conversion in PHP is a problem often encountered in programming. ASCII (American Standard Code for Information Interchange) is a standard encoding system for converting characters into numbers. In PHP, we often need to convert between characters and numbers through ASCII code. This article will introduce how to convert ASCII values ​​in PHP and give specific code examples. 1. Change the characters

Use java's String.length() function to get the length of a string Use java's String.length() function to get the length of a string Jul 25, 2023 am 09:09 AM

Use Java's String.length() function to get the length of a string. In Java programming, string is a very common data type. We often need to get the length of a string, that is, the number of characters in the string. In Java, we can use the length() function of the String class to get the length of a string. Here is a simple example code: publicclassStringLengthExample{publ

How to use java's String class How to use java's String class Apr 19, 2023 pm 01:19 PM

1. Understanding String1. String in JDK First, let’s take a look at the source code of the String class in the JDK. It implements many interfaces. You can see that the String class is modified by final. This means that the String class cannot be inherited and there is no subclass of String. class, so that all people using JDK use the same String class. If String is allowed to be inherited, everyone can extend String. Everyone uses different versions of String, and two different people Using the same method shows different results, which makes it impossible to develop the code. Inheritance and method overriding not only bring flexibility, but also cause many subclasses to behave differently.

See all articles