php trim string length code example
Example 1: how to check php string length
<?php
$name = 'abcdef';
echo strlen($str);
$string = ' ab cd ';
echo strlen($str);
?>
Example 2: take 10 character from string using php
$return_string = substr("Hi i am returning first 10 characters.", 0, 10);
Output:
"Hi i am re"
Example 3: php trim string to length
<?php
echo substr('abcdef', 1);
echo substr('abcdef', 1, 3);
echo substr('abcdef', 0, 4);
echo substr('abcdef', 0, 8);
echo substr('abcdef', -1, 1);
$string = 'abcdef';
Example 4: only display part of string php
substr('abcdef', 1);
substr('abcdef', 1, 3);
substr('abcdef', 0, 8);
substr('abcdef', -1, 1);