Everyone knows that PHP’s trim() function, ltrim() function, and rtrim() function can all remove spaces. So what are the differences in usage between the three? Now let me introduce them to you one by one.
1.php trim() function removes all spaces (actually, to be precise, it removes all spaces in the string twice), for example:
$str=" love 59biye ";
echo ("---". trim($str)."---");//Output---love 59biye---
2.php The ltrim() function removes the spaces on the left side of the string, for example:
$str=" love 59biye ";
echo ("---".ltrim($str)."---");//Output ---love 59biye ---
3.php The rtrim() function removes the right side of the string Space, for example:
$str=" love 59biye ";
echo ("---".ltrim($str)."---");//Output --- love 59biye---
Okay, Everyone can see their specific differences.