Answers for "string character count in php"

PHP
3

how to count string characters in php

<?php
$str1 = 'Hello world!';
echo strlen($str1); // Outputs: 12
Posted by: Guest on June-27-2021
0

counting a string in php

strlen('your strings here!');
Posted by: Guest on May-10-2021
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 "string character count in php"

Browse Popular Code Answers by Language