Answers for "php compter nombre caractere"

PHP
36

php nombre de caractère

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

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

Browse Popular Code Answers by Language