Answers for "php check lenth"

PHP
12

string length php

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

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

find string lenght in php

Use the PHP strlen() function
Posted by: Guest on December-16-2020

Browse Popular Code Answers by Language