0
可能性の重複:
How to wipe html special chars like and others from text with the help of PHP?文字列の先頭から「 」を削除するにはどうすればよいですか?
私はこの文字列を持っている:
6:30
私は
を削除するにはどうすればよいですか?爆発は機能していません。
可能性の重複:
How to wipe html special chars like and others from text with the help of PHP?文字列の先頭から「 」を削除するにはどうすればよいですか?
私はこの文字列を持っている:
6:30
私は
を削除するにはどうすればよいですか?爆発は機能していません。
$string = " 6:30";
$string = str_replace(" ","",$string);
echo $string;
または
$string = " 6:30";
$string = trim($string);
echo $string;
trim(html_entity_decode($s))
質問のタイトルで動作するはずの環境が与えられていない、適切ではありません。 – Deele