Answers for "To print the size of a string. Pass string as an argument in php"

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
12

php string length

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

$str = 's p a c e';
echo strlen($str); // 9
?>
Posted by: Guest on July-09-2020

Code answers related to "To print the size of a string. Pass string as an argument in php"

Browse Popular Code Answers by Language