从 PHP 开头移除额外的空格?
如果你想要移除开头的多余空格,在 PHP 中使用 ltrim()。我们假设这个变量如下:
$value=" Hello, welcome to PHP Tutorial ";
我们想要一个左侧没有空格的输出:
Hello, welcome to PHP Tutorial
示例
<!DOCTYPE html> <html> <body> <?php $value=" Hello, welcome to PHP Tutorial "; print_r( "The actual value is=".$value."<br>"); echo "The actual length is=",strlen($value)."<br>"; $modifiedValue=ltrim($value); echo "After removing extra whitespace from beginning=",strlen($modifiedValue)."<br>"; echo "The result is=".$modifiedValue; ?> </body> </html>
输出
这将产生以下输出
The actual value is= Hello, welcome to PHP Tutorial The actual length is=34 After removing extra whitespace from beginning=32 The result is=Hello, welcome to PHP Tutorial
广告