Open In App

PHP chop() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The chop() in PHP is used to remove white spaces or any other specified characters from the end of a string.

Syntax:

string chop($string, $character)

Parameters: This function accepts two parameters as shown in the above syntax and are described below:

  1. $string : It is used to specify the string which is needed to be checked.
  2. $character : It specifies the character which is needed to be removed from the given string. If this parameter is not specified then NULL, tab, newline, vertical tab, carriage return and ordinary white space are removed automatically.

Return Value: The return type of the chop() function is string. It returns the string after removing the specified characters from the end.

Program 1: In the below program a string is initialized as hello geeks!, by using chop() function the characters – ‘s’ and ‘!’ are removed from the end of the string.




<?php
  
$s= "Hello Geeks!";
echo $s. "\n";
echo chop($s, "s!");
  
?>


Output:

Hello Geeks!
Hello Geek

Program 2: In the below program, since no character parameter is mentioned. Then automatically the newlines will be removed from the given string.




<?php
  
$s= "Hello Geeks! \n best wishes \n \n";
echo $s;
echo chop($s);
echo $s;
  
?>


Output:

Hello Geeks! 
 best wishes 
 
Hello Geeks! 
 best wishesHello Geeks! 
 best wishes 
 

Reference:
http://php.net/manual/en/function.chop.php


Last Updated : 21 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads