Thursday 7 April 2016

Right and Left Trim in php

Right and Left Trim in php

Right Trim:

To right trim a string use "rtrim" function in php
$path = "/test-string/"
echo $path = rtrim($path,"/"); 

Output:
/test-string


Left Trim:

To left trim a string use "ltrim" function in php
$path = "/test-string/"
echo $path = ltrim($path,"/"); 

Output:
test-string/

No comments:

Post a Comment