Skip to content

PHP code snippet – How to count the characters in laravel?

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

$str = ' ab cd ';
echo strlen($str); // 7
?>

See also  Python code snippet - pandas How to start read csv at a certain row?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.