Home » PHP chop() function

PHP chop() function

by Online Tutorials Library

PHP chop() Function

The chop() function is used to remove whitespace or other predefined character from the right end of a string.

Syntax:

Note: chop() function is different than the Perl chop() function function, which is used to remove the last character in the string.

Parameter Description Required/Optional
string the string to be check Required
charlist charlist parameter is empty Optional

Example 1

Output:

Your string is :Hello World!  By using 'chop()' Functions is your string is: Hello  

Example 2

Output:

Your string is :Hello World!  By using 'chop()' Functions is your string is: Hello World!  

Example 3

Output:

Your string is :Hello World!   By using 'chop()' Functions is your string is: Hello World!  

Next TopicPHP String

You may also like