Answers for "php how to count content length of string"

PHP
11

how to check php string length

<?php
$name = 'abcdef';
echo strlen($str); // 6

$string = ' ab cd ';
echo strlen($str); // 7
?>
Posted by: Guest on August-24-2020

Code answers related to "php how to count content length of string"

Browse Popular Code Answers by Language