search
HomeheadlinesPHP string function (2): comparison operation

* 1.strcmp($str1, $str2): Binary safe string comparison

* 2.strncmp($str1, $str2, $length): Compare whether the length specified at the beginning is the same

* 3.strcasecmp($str1, $str2): Binary safe string comparison, case-insensitive

* 4.strncasecmp($str1, $str2): Binary safe string comparison , case-insensitive

* 5.strspn($str,$mark,$start,$length): Get the length of the starting substring matching the mask

* 6. strcspn($str,$mark,$start,$length): Get the length of the starting substring of the unmatched mask

$str1 = 'php中文网';
$str2 = 'PHP中文网';

//1.strcmp($str1, $str2):String For comparison, return 0 if equal, return >0 if greater, otherwise return

echo strcmp($str1, $str2) == 0 ? &#39;相等&#39; : &#39;不相等&#39;, &#39;<br>&#39;;

//2.strncmp($str, $str2, $n): Compare whether the lengths specified at the beginning are equal

echo strncmp($str1, $str2, 3) == 0 ? &#39;相等&#39; : &#39;不相等&#39;, &#39;<br>&#39;;

//3.strcasecmp($str1, $str2): case-insensitive string comparison, returns 0 if equal, >0 if greater, otherwise returns

echo strcasecmp($str1, $str2) == 0 ? &#39;相等&#39; : &#39;不相等&#39;, &#39;<br>&#39;;

//4 .strncasecmp($str1, $str2): Case-insensitive comparison of whether the length specified at the beginning is equal

echo strncasecmp($str1, $str2,3) == 0 ? &#39;相等&#39; : &#39;不相等&#39;, &#39;<br>&#39;;

//5.strspn($str, $mark, $start, $length):

//Calculate the length of the first substring in which all characters in the string exist in the specified character set

//$str1: The string to be compared, $mark: Similar to a set, return Number of matches

echo strspn(&#39;15705519989&#39;, &#39;1234567890&#39;),&#39;<br>&#39;;  //返回11

//You can specify the position and length to start comparison

echo strspn(&#39;15705519989&#39;, &#39;1234567890&#39;, 4, 4),&#39;<br>&#39;;//返回4

//Only compare the first substring in $str, ignore all the following ones, and return 11

echo strspn(&#39;15705519989 18955123344 111abc&#39;, &#39;1234567890&#39;),&#39;<br>&#39;;

//Return 3, because only the first three in the first string are data belonging to the number set

echo strspn(&#39;157php 18955123344 111abc&#39;, &#39;1234567890&#39;),&#39;<br>&#39;;

//For example, the mobile phone number must be a pure numeric string, requiring the user What must be entered is a purely numeric string

$phone = &#39;13899886767&#39;;

// $phone = '1389988php6767';

$mark = &#39;0123456789&#39;;

//Analysis, if it matches correctly, strspn() must return 11, because the phone The number is 11, which is exactly the same as strlen($phone)

echo strlen($phone)==strspn($phone, $mark) ? &#39;全数字&#39; : &#39;必须全为数字&#39;;

//Equivalent to: strspn(substr($subject, $start, $length), $mask)

// 6. The functions of strcspn() and strspn() are exactly opposite. You can verify it by giving examples

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怎么将数值后面的零去掉May 30, 2022 pm 07:36 PM

两种去除方法:1、使用rtrim()函数,语法“rtrim(数值,"0")”,可去除数值后面连续的零。2、用substr_replace(),语法“substr_replace(数值,'', -位置值)”,可从指定位置开始将零替换为空字符。

php怎么将空格转换成nbsp符php怎么将空格转换成nbsp符Apr 25, 2022 pm 08:30 PM

方法:1、用str_replace(),语法“str_replace(" ","&nbsp;",$str)”;2、用preg_replace()配合正则表达式,语法“preg_replace('/\s+/',"&nbsp;",$str)”。

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

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

php怎么将小数点转为百分比php怎么将小数点转为百分比Apr 28, 2022 pm 08:51 PM

php将小数点转为百分比的方法:1、利用“*”运算符将小数乘以100,语法“小数 * 100”,可将小数转为百分值;2、使用字符串拼接符“.”将百分值和“%”符拼接在一起,形成百分比字符串即可,语法“百分值."%"”。

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

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

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

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

怎么将多个php数组转成一个json数据怎么将多个php数组转成一个json数据May 26, 2022 pm 04:18 PM

转换方法:1、使用“array_merge_recursive(数组1,数组2,数组3...)”语句将多个数组合并为一个数组;2、使用json_encode()将合并后的数组转为json数据,语法“json_encode(合并后的数组)”。

php怎么去掉指定字符之后的内容php怎么去掉指定字符之后的内容May 27, 2022 pm 06:12 PM

两种方法:1、用“substr_replace($str,"",strpos($str,"指定字符")+1)”语句,将指定字符位置后的内容替换为空字符;2、用“substr($str,0,strpos($str,"指定字符")+1)”语句。

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尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),