#【php 文字列の最後のカンマを削除するメソッド: 関数 rtrim を使用して文字列の末尾をフィルタリングします。コードは [$trimmed = "\t\tThese are a some word :) .." です。 $str = '13, 3';echo rtrim($str, ',')]。
関連する学習の推奨事項: php グラフィック チュートリアル #】
php で文字列の最後のカンマを削除する方法:
最初に個別に説明します。str_replace.
$str = '123,333,234,'; echo rtrim($str, ','); rtrim实例代码2
<?php $text = "\t\tThese are a few words :) ... "; $trimmed = rtrim($text); // $trimmed = "\t\tThese are a few words :) ..." $trimmed = rtrim($text, " \t."); // $trimmed = "\t\tThese are a few words :)" $clean = rtrim($binary, "\x00..\x1F"); // trim the ASCII control characters at the end of $binary // (from 0 to 31 inclusive) ?>
php プログラミング
以上がPHPで文字列から最後のカンマを削除する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。