Answers for "get character length in php"

PHP
-1

Get PHP String Length

phpCopy<?php
$mystring = "This is my string";
echo("The string length in bytes is: ");
echo(strlen($mystring));
?>
Posted by: Guest on April-23-2021
0

Get PHP String Length

phpCopy<?php
$mystring = "This is my string";
echo("The string length in bytes is: ");
echo(mb_strlen($mystring));
?>
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language