如何在php上删除空格?

时间:2015-05-22 21:49:44

标签: php forms trim

if $adsoyad comes like "hello____" with space. (___ those are space)

如果$adsoyad出现,那么PHP删除空格" hello ____",其中_是空格。我需要删除所有空格并将字符串保存为" hello"。我使用trim(),但我无法做到。

1 个答案:

答案 0 :(得分:2)

我认为你和其他人错过了_(下划线)到(空格)。请检查: -

<?php

$text = "hello____";

echo $text = str_replace('_', '', $text);
?>

输出: - http://prntscr.com/7897ox

注意: - 请让我知道,如果我错过了 - 你理解你的意图。感谢