trim whitespace in php - PHP Views : 271
Tagged in : PHP
0 0
Send mail
trim whitespace in php:

Strip or trim whitespace in php using trim().
<?php
$hello = "Hello Hscripts.com ";
$trimmed = trim($hello);
echo $trimmed;
?>


O/P:
Hello Hscripts.com Razz
By Ramya, On - 2010-01-12



    Login to add Comments .