search
HomeBackend DevelopmentPHP TutorialHow to flexibly use PHP to determine the inclusion of a string_PHP Tutorial
How to flexibly use PHP to determine the inclusion of a string_PHP TutorialJul 15, 2016 pm 01:31 PM
phpunderintroduceInstructionsspecificjudgmentIncludehowstringflexibleofuse

The following describes the specific use of PHP to determine the inclusion of a string:

1. strstr: Returns a string from the beginning to the end of the determined character, if there is no The return value does not include

. The code is as follows:

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php   </span></span></span></li>
<li><span>/*如手册上的举例*/   </span></li>
<li class="alt">
<span>$</span><span class="attribute">email</span><span> = </span><span class="attribute-value">'user@example.com'</span><span>;   </span>
</li>
<li>
<span>$</span><span class="attribute">domain</span><span> = </span><span class="attribute-value">strstr</span><span>($email, '@');   </span>
</li>
<li class="alt"><span>echo $domain; <br>// prints @example.com   </span></li>
<li>
<span class="tag">?></span><span> </span>
</li>
</ol>

2. stristr: It is used exactly the same as strstr. The only difference is that stristr is not case-sensitive.

3. strpos: Returns a boolean value. Needless to say FALSE and TRUE. Use "===" to judge. strpos is faster than the above two functions in terms of execution speed. In addition, strpos has a parameter to specify the judgment position. But the default is empty. It means to judge the entire string. The disadvantage is that the support for Chinese is not good.

The code for PHP to judge the string contains is as follows:

<ol class="dp-xml">
<li class="alt"><span><span>$</span><span class="attribute">str</span><span>= </span><span class="attribute-value">'abc'</span><span>;   </span></span></li>
<li>
<span>$</span><span class="attribute">needle</span><span>= </span><span class="attribute-value">'a'</span><span>;   </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">pos</span><span> = </span><span class="attribute-value">strpos</span><span>($str, $needle);  </span>
</li>
</ol>

4. Use explode. Judgment

The PHP code for judging the inclusion of a string is as follows:

<ol class="dp-xml">
<li class="alt"><span><span>function checkstr($str){   </span></span></li>
<li>
<span>$</span><span class="attribute">needle</span><span> = </span><span class="attribute-value">"a"</span><span>;//判断是否包含a这个字符   </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">tmparray</span><span> = </span><span class="attribute-value">explode</span><span>($needle,$str);   </span>
</li>
<li>
<span>if(count($tmparray)</span><span class="tag">></span><span>1){   </span>
</li>
<li class="alt"><span>return true;   </span></li>
<li><span>} else{   </span></li>
<li class="alt"><span>return false;   </span></li>
<li><span>}   </span></li>
<li class="alt"><span>}  </span></li>
</ol>

The above is a specific code example for PHP to judge the inclusion of a string.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446228.htmlTechArticleThe following introduces the specific use method of PHP to judge the inclusion of a string: 1. strstr: Returns a character starting from the character being judged The string to the end, if there is no return value, does not include the code as follows:...
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怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

@JsonIdentityInfo注解在Java中使用Jackson的重要性是什么?@JsonIdentityInfo注解在Java中使用Jackson的重要性是什么?Sep 23, 2023 am 09:37 AM

当对象在Jackson库中具有父子关系时,将使用@JsonIdentityInfo注释。@JsonIdentityInfo 注解 用于在序列化和反序列化过程中指示对象身份。ObjectIdGenerators.PropertyGenerator是一个抽象占位符类,用于表示要使用的对象标识符来自POJO属性的情况。语法@Target(value={ANNOTATION_TYPE,TYPE,FIELD,METHOD,PARAMETER})@Retention(value=RUNTIME)public

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

PHP算法的基本概念与应用PHP算法的基本概念与应用Jul 07, 2023 pm 05:22 PM

PHP算法的基本概念与应用随着互联网的快速发展,PHP作为一种简单易学且功能强大的编程语言,在Web开发中得到了广泛应用。而算法作为计算机科学的基础,对于解决问题和优化程序起着至关重要的作用。本文将介绍PHP算法的基本概念,并提供一些实际应用的代码示例。一、算法的基本概念算法的定义算法是解决特定问题的有限序列的一种描述。它包括一系列的步骤和规则,按照特定的顺

php怎么去除首位数字php怎么去除首位数字Apr 20, 2022 pm 03:23 PM

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

从不同角度看C语言和Python的对比从不同角度看C语言和Python的对比Mar 18, 2024 am 10:57 AM

C语言和Python是两种常见的编程语言,各自具有特点和优势。本文将从不同的角度对比这两种语言,分析它们在不同场景下的适用性和优劣势。1.语法简洁性C语言是一种底层语言,语法相对较为繁琐,需要手动管理内存、声明变量等。举例来说,编写一个简单的HelloWorld程序,C语言代码如下:#includeintmain()

Python为什么如此受欢迎?探究Python在编程领域的优势Python为什么如此受欢迎?探究Python在编程领域的优势Mar 26, 2024 am 09:15 AM

Python为什么如此受欢迎?探究Python在编程领域的优势,需要具体代码示例Python作为一种高级编程语言,自问世之日起便备受程序员们的喜爱与推崇。究其原因,不仅仅是因为它的简洁、易读和强大的功能,更因为它在各个领域都展现出了无可比拟的优势。本文将探究Python在编程领域的优势,并通过具体的代码示例来解释为什么Python如此受欢迎。首先,Pytho

Golang 泛型探秘:支持与局限性分析Golang 泛型探秘:支持与局限性分析Mar 05, 2024 am 11:48 AM

Golang泛型探秘:支持与局限性分析一、引言随着Go语言的不断发展,社区对于泛型的需求也日益增大。在过去的几年间,Golang社区一直在讨论是否应该为Go添加泛型支持。泛型是一种编程范式,可以提高代码的复用性、可读性和可维护性。本文将探讨Golang最新泛型支持的情况,以及其支持与局限性的分析,并通过具体的代码示例来说明。二、泛型支持的情况

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

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

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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),