PHP study notes: Basic PHP skills for using mb_strstr
This article mainly introduces you to the basic use of mb_strstr in PHP study notes. The article introduces it in great detail through sample codes. It has certain reference learning value for everyone's study or work. Friends who need it follow below Let’s learn together.
Preface
This article mainly introduces the relevant content about the basic use of mb_strstr in PHP. It is shared for everyone’s reference and study. There is not much to say below. Having said that, let’s take a look at the detailed introduction.
mb_strstr
- ##(PHP 5 >= 5.2.0, PHP 7)
- mb_strstr — Finds first occurrence of a string within another
- Finds first occurrence of a string within another string
Description
string mb_strstr ( string $haystack , string $needle [, bool $before_needle = false [, string $encoding =mb_internal_encoding() ]] ) //mb_strstr() finds the first occurrence of needle in haystack and returns the portion of haystack. If needle is not found, it returns FALSE. //mb_strstr() 查找了 needle 在 haystack 中首次的出现并返回 haystack 的一部分。 如果 needle 没有找到,它将返回 FALSE。
Parameters
- The string from which to get the first occurrence of needle
- To get the first occurrence of needle.
- The string to find in haystack
- Find in haystack this string.
- Determines which portion of haystack this function returns. If set to TRUE, it returns all of haystack from the beginning to the first occurrence of needle (excluding needle). If set to FALSE, it returns all of haystack from the first occurrence of needle to the end (including needle).
- Determine this function Which part of the haystack is returned. If set to TRUE, it returns all characters in haystack from the beginning to the occurrence of needle (excluding needle). If set to FALSE, it returns all characters from the last occurrence of needle in haystack (including needle).
- Character encoding name to use. If it is omitted, internal character encoding is used.
- The character encoding name to use. If this parameter is omitted, the internal character encoding will be used.
- Returns the portion of haystack, or FALSE if needle is not found.
- Returns part of haystack, or returns FALSE if needle is not found.
Examples
##
The above is the detailed content of PHP study notes: Basic PHP skills for using mb_strstr. For more information, please follow other related articles on the PHP Chinese website!

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

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)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
