How to check for a substring in a string in PHP

A guide on how to use the `strpos` function in PHP to check if a substring exists within a larger string. This is a simple and efficient way to handle string operations in PHP.

In this article, we will explore how to check if a substring exists within a larger string using the strpos function in PHP. This function returns the position of the substring if found, or false if the substring is not present.

PHP Code

<?php
// Main string
$haystack = "This is a simple example string.";

// Substring to check
$needle = "example";

// Check if the substring exists
if (strpos($haystack, $needle) !== false) {
    echo "The substring '$needle' exists in the string.";
} else {
    echo "The substring '$needle' does not exist in the string.";
}
?>

Detailed explanation:

  1. $haystack = "...": Variable containing the main string we are checking.
  2. $needle = "...": Variable containing the substring we want to find.
  3. strpos($haystack, $needle): This function searches for the first occurrence of the substring within the main string.
  4. !== false: We use strict comparison to differentiate between false (not found) and position 0 (found at the beginning of the string).
  5. echo: Prints the result to the screen.

System requirements:

  • PHP version 5 or higher

Tips:

  • Be cautious when checking for substrings that could appear at position 0—strict comparison ensures you get accurate results.
  • For more complex substring checks, you can use regular expressions with preg_match.
Tags: PHP, String


Related

How to remove Punctuation from String in PHP

A guide on how to remove punctuation from a string in PHP. This article explains how to use the `preg_replace` function to strip unwanted punctuation marks from a string.
Check if a given String is Binary String or Not using PHP

A guide on how to check if a given string is a binary string (containing only `0` and `1` characters) in PHP. This article uses basic PHP string functions.
How to use strtok() function in PHP

This article explains how to use the `strtok` function in PHP to split a string into smaller parts based on delimiters. The `strtok` function is a useful tool for string manipulation in PHP projects.
How to Automatically Generate a Table of Contents for Articles Using PHP

This article guides you on how to automatically create a table of contents for your articles using PHP, utilizing the `DOMDocument` class to parse HTML and build a structured table of contents with headers.
Create image thumbnail with PHP

A guide on how to create an image thumbnail with PHP using the GD library. This PHP code helps resize an original image to a custom thumbnail size.
Guide to uploading multiple images in PHP

A detailed guide on how to upload multiple images at once in PHP, including file handling, format checks, and storage on the server.
Add watermark to image using PHP

A guide on how to add a watermark to an image using PHP with the GD library. This PHP script allows adding text or image watermark on top of the original image.
Example of Object-Oriented Programming (OOP) in PHP

A guide with a basic example of Object-Oriented Programming (OOP) in PHP, explaining how to use classes and objects to structure code using OOP principles.
How to retrieve Data from MySQL Database Using PHP

Learn how to retrieve data from a MySQL database using PHP. Includes detailed code and explanation on how to connect to and query a MySQL database.
How to extract numbers from a string in PHP

This article demonstrates how to extract numbers from a string in PHP using various methods such as regex (regular expressions), built-in functions like `preg_match_all`, `filter_var`, and manual approaches.

main.add_cart_success