Rather use rtrim(). Usage of chop() is not very clear nor consistent for people reading the code after you.
この関数は次の関数のエイリアスです。 rtrim().
注意:
chop() は、文字列の末尾の文字を削除する Perl の
chop()
関数とは異なります。
Rather use rtrim(). Usage of chop() is not very clear nor consistent for people reading the code after you.
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?