Get the last character of a string in PHP

Guide on how to use PHP to get the last character of a string. This PHP code helps in easily retrieving the final character of a text string in string manipulation operations.

<?php
function getLastCharacter($string) {
    // Check if the string is not empty
    if (strlen($string) > 0) {
        // Get the last character of the string
        return $string[strlen($string) - 1];
    } else {
        return null; // Return null if the string is empty
    }
}

// Example usage
$inputString = "Hello, world!";
$lastChar = getLastCharacter($inputString);
echo "The last character of the string is: " . $lastChar;
?>

Detailed explanation:

  1. Check if the string is not empty:

    • strlen($string) > 0: Checks if the length of the string is greater than 0. If the string is empty, the function returns null.
  2. Get the last character of the string:

    • $string[strlen($string) - 1]: Retrieves the last character of the string by indexing the position of the last character, which is the length of the string minus 1.
  3. Return the last character:

    • return $string[strlen($string) - 1]: Returns the last character if the string is not empty.
  4. Example usage:

    • $inputString = "Hello, world!";: Defines the input string.
    • echo "The last character of the string is: " . $lastChar;: Displays the last character of the string.

PHP Version:

This code can run on PHP versions from 5.0 and above.



Related

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.
Guide to reading Excel files in PHP

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using PHP, utilizing the PHPExcel library, including installation and implementation steps.
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.
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.
Prevent XSS (Cross-site Scripting) using PHP

A guide on how to prevent XSS (Cross-site Scripting) in PHP by filtering and escaping user input, ensuring website security against XSS vulnerabilities.
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.
Creating a Simple Chat Application Using Socket.IO in PHP

A step-by-step guide to creating a simple chat application using Socket.IO in PHP, helping you understand how to utilize WebSocket for real-time communication.
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.
Update multiple columns in MySQL using PHP

A guide on how to update multiple columns in MySQL using PHP. This PHP code uses the UPDATE statement to change multiple column values in a MySQL database.
How to Write Data to an Excel File Using PHP

A detailed guide on how to write data to an Excel file using PHP with the help of the PHPExcel library or the more modern PhpSpreadsheet library.

main.add_cart_success