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.

The strtok function in PHP is used to split a string into smaller parts by specifying a delimiter. It is an efficient way to handle strings in PHP. In this article, we will explore how to use strtok to split strings.

PHP Code

<?php
// The string to be tokenized
$string = "Welcome to PHP programming";

// Create the first token using space as the delimiter
$token = strtok($string, " ");

// Loop through each token and display it
while ($token !== false) {
    echo $token . "\n";  // Print each part of the string
    // Get the next token
    $token = strtok(" ");
}
?>

Detailed explanation:

  1. $string = "Welcome to PHP programming";: Declares a string to be tokenized.
  2. $token = strtok($string, " ");: Starts splitting the string using space as the delimiter.
  3. while ($token !== false) {: Loop to iterate through each token (split part of the string).
  4. echo $token . "\n";: Outputs each token (split part) on a new line.
  5. $token = strtok(" ");: Retrieves the next token in the string.

Other uses of strtok():

  1. Splitting using a single delimiter:

    $string = "2024/10/14";
    $token = strtok($string, "/");
    
    while ($token !== false) {
        echo $token . "\n";
        $token = strtok("/");
    }
    
    • This example uses / as the delimiter to split the string into year, month, and day.
  2. Using multiple delimiters:

    $string = "apple,banana|grape-orange";
    $token = strtok($string, ",|-");
    
    while ($token !== false) {
        echo $token . "\n";
        $token = strtok(",|-");
    }
    
    • The strtok function allows multiple delimiters such as ,, |, and -.

System requirements:

  • PHP version 4 or newer.
  • A PHP-supported server.

How to install:

  • Ensure PHP is installed on your machine or server.
  • No additional libraries are required.

Tips:

  • strtok is useful for step-by-step tokenization. If you need to split the entire string at once, consider using explode().
  • Always check the returned value to avoid issues with empty strings or invalid data.
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.
How to convert a Markdown string to HTML using PHP

A guide on how to convert a Markdown string to HTML in PHP using the `Parsedown` library, enabling you to display Markdown content effectively on your website.
Comprehensive guide to concatenating strings in PHP

A detailed guide on all the ways to concatenate strings in PHP, including the concatenation operator, string functions, and other methods.
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.
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 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.
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 Singleton Pattern in PHP

A guide on the Singleton Pattern in PHP with a detailed example, explaining how to implement and use this design pattern in object-oriented programming.
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.
Paginate MySQL query results using PHP

A guide on how to paginate MySQL query results using PHP. This PHP code helps split data from MySQL into separate pages for better presentation.

main.add_cart_success