Home Backend Development PHP Tutorial php判断字符以及字符串的包孕方法属性

php判断字符以及字符串的包孕方法属性

Jun 13, 2016 am 10:54 AM
email str strpos

php判断字符以及字符串的包含方法属性

下面介绍使用方法:?
1. strstr: 返回一个从被判断字符开始到结束的字符串,如果没有返回值,则不包含?

代码如下:
?
???? /*如手册上的举例*/?
???? $email = [email protected]';?
??? $domain = strstr($email, '@');?
???? echo $domain; // prints @example.com?
?>?

2. stristr: 它和strstr的使用方法完全一样.唯一的区别是stristr不区分大小写.?
3. strpos: 返回boolean值.FALSE和TRUE不用多说.用 “===”进行判断.strpos在执行速度上都比以上两个函数快,另外strpos有一个参数指定判断的位置,但是默认为空.意思是判断整个字符串.缺点是对中文的支持不好.使用方法?
代码如下:
$str= 'abc';?
$needle= 'a';?
$pos = strpos($str, $needle);?

4. 用explode进行判断 代码如下:
function checkstr($str){?
????? $needle = "a";//判断是否包含a这个字符?
???? $tmparray = explode($needle,$str);?
???? if(count($tmparray)>1){?
?????? return true;?
??? } else{?
?????? return false;?
??? }?
}?

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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
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 尊渡假赌尊渡假赌尊渡假赌

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)

How to use email, smtplib, poplib, imaplib modules to send and receive emails in Python How to use email, smtplib, poplib, imaplib modules to send and receive emails in Python May 16, 2023 pm 11:44 PM

The journey of an email is: MUA: MailUserAgent - Mail User Agent. (i.e. email software similar to Outlook) MTA: MailTransferAgent - Mail transfer agent, which is those email service providers, such as NetEase, Sina, etc. MDA: MailDeliveryAgent - Mail delivery agent. A server of the Email service provider sender->MUA->MTA->MTA->if

Find the position of another string in a string using PHP function 'strpos' Find the position of another string in a string using PHP function 'strpos' Jul 26, 2023 pm 12:29 PM

Use the PHP function "strpos" to find the position of another string in a string. In PHP, we often need to find the position of another string in a string. This is very common when working with text, search and replace, etc. PHP provides many string processing functions, one of which is very useful function "strpos", which can help us quickly find the position of the target string in the source string. The following is a simple code example that demonstrates how to use the "strpos" function to query

Python built-in type str source code analysis Python built-in type str source code analysis May 09, 2023 pm 02:16 PM

1The basic unit of Unicode computer storage is the byte, which is composed of 8 bits. Since English only consists of 26 letters plus a number of symbols, English characters can be stored directly in bytes. But other languages ​​(such as Chinese, Japanese, Korean, etc.) have to use multiple bytes for encoding due to the large number of characters. With the spread of computer technology, non-Latin character encoding technology continues to develop, but there are still two major limitations: no multi-language support: the encoding scheme of one language cannot be used in another language and there is no unified standard: for example There are many encoding standards in Chinese such as GBK, GB2312, GB18030, etc. Since the encoding methods are not unified, developers need to convert back and forth between different encodings, and many errors will inevitably occur.

What are the similarities and differences between __str__ and __repr__ in Python? What are the similarities and differences between __str__ and __repr__ in Python? Apr 29, 2023 pm 07:58 PM

What are the similarities and differences between __str__ and __repr__? We all know the representation of strings. Python's built-in function repr() can express objects in the form of strings to facilitate our identification. This is the "string representation". repr() obtains the string representation of an object through the special method __repr__. If __repr__ is not implemented, when we print an instance of a vector to the console, the resulting string may be. >>>classExample:pass>>>print(str(Example()))>>>

Tutorial on how to insert attachments into win10 mailbox Tutorial on how to insert attachments into win10 mailbox Jan 07, 2024 pm 12:14 PM

Many users need to send emails for work in their daily lives, and some even need to attach various plug-in materials for communication. So how to insert attachments? Let’s take a look at the detailed tutorial below. How to insert attachments to win10 mailbox: 1. Open the mailbox 2. Click the "New Mail" icon in the upper left corner 3. Click "Insert" in the upper right corner 4. Click "Attachment" in the upper right corner 5. Select the required "Attachment" 6. Complete

Detailed explanation on the use of strchr, str_replace and strpos functions Detailed explanation on the use of strchr, str_replace and strpos functions Jun 16, 2023 am 08:41 AM

In PHP programming, string processing is relatively common, and operations such as searching and replacing strings are often required. In string processing, it is more common to use strchr, str_replace, and strpos functions. Next, let’s explain the use of these three functions in detail. 1. strchr function The strchr function searches for the specified character in a string and returns the string from the specified character to the end of the string. The syntax is as follows: strchr(string,char

Email in Yii framework: Implementing email sending Email in Yii framework: Implementing email sending Jun 21, 2023 am 08:49 AM

The Yii framework is a high-performance, open source web development framework with efficient routing and modularity mechanisms that is ideal for quickly developing complex web applications. Among them, sending emails is one of the inevitable functions of any application. In the Yii framework, it is very simple to implement email sending, and it also provides many customization options and rich business logic support. 1. Email configuration in the Yii framework In the Yii framework, the configuration file is a very important resource, used to configure the basic information of the application and various groups.

How to use strpos function in PHP to find words in a string How to use strpos function in PHP to find words in a string Jun 26, 2023 pm 02:39 PM

In PHP, it is often necessary to find words and keywords in strings for processing and analysis. To find words in a string, you can use PHP's built-in strpos function. The strpos function (stringposition) is a built-in function in PHP for finding strings. It is used to find the position of the first occurrence of a specified substring in a string. The format of this function is: strpos($haystack,$needle,[$off

See all articles