php 字符比较strcmp()函数使用方法
strcmp()函数的使用是比较两个字符串,如果两个字符串完全相等我们就返回0,否则就会有各种返回值,此函数并区分大小写,有需要的朋友可参考.
对比后返回值说明
如果str1 和str2 相等则返回0 .
如果str1小于str2则返回
如果str1大于str2则返回>0(但不一定时1,具体数值大小根据实际情况而定).
实例代码如下:
strcmp(date('Y-m-d',$user->last_time), date("Y-m-d",time())) == 0
Copy after login
如果要不区别大小写
strncasecmp用于不区分大小写的比较字符串的一部分,从字符串的开头开始比较,第三个参数,为要比较的长度:
实例代码如下:
echo strncasecmp("abcdd", "abcde", 3); // 返回 0, 比较了 abc 和 abc, 由于不区分大小写,所以两者相同
Copy after login
php字符串比较我们还可以使用 ==来,如
实例代码如下:
$a='aa'; $b='www.phprm.com'; if( $a == $b ) { echo '相等'; } else { echo '不等'; }
Copy after login
还可以使用===来比较
实例代码如下:
22 == "22"; // 返回 true
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
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
1 months ago
By DDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
1 months ago
By DDD
R.E.P.O. Best Graphic Settings
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Assassin's Creed Shadows: Seashell Riddle Solution
1 weeks ago
By DDD

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
