PHP 8.5.0 Beta 1 available for testing

chop

(PHP 4, PHP 5, PHP 7, PHP 8)

chopAlias de rtrim()

Descripción

Esta función es un alias de : rtrim().

Notas

Nota:

El comportamiento de la función chop() no es el mismo que el de la función chop() de Perl, que elimina el último caracter de la cadena.

add a note

User Contributed Notes 2 notes

up
62
Kubo2
10 years ago
Rather use rtrim(). Usage of chop() is not very clear nor consistent for people reading the code after you.
up
12
JumpIfBelow
10 years ago
If you are searching for a function that does the same trick as chop in PERL, then you should just do the following code:
<?php
$str
= substr($str, 0, -1);
?>

The question is: why isn't chop() an alias of the code above, rather than something which will trap developpers?
To Top