Answers for "check if lenghth of string is 11 in php"

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
6

php string length

<?php
$str = 'Hello World!';
echo strlen($str); // 12
?>
Posted by: Guest on April-22-2020

Code answers related to "check if lenghth of string is 11 in php"

Browse Popular Code Answers by Language