PHP 8.4.0 RC4 available for testing

chop

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

chopSinônimo de rtrim()

Descrição

Esta função é um apelido para: rtrim().

Notas

Nota:

chop() é diferente da função do Perl chop(), que remove o último caractere da string.

adicione uma nota

Notas Enviadas por Usuários (em inglês) 2 notes

up
61
Kubo2
9 years ago
Rather use rtrim(). Usage of chop() is not very clear nor consistent for people reading the code after you.
up
9
JumpIfBelow
9 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