Answers for "php string minimum length"

PHP
6

php string length

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

set a minimum character value in php

if (strlen($input) < 12)
{
   echo "Input is too short, minimum is 12 characters (20 max).";
}
elseif(strlen($input) > 20)
{
   echo "Input is too long, maximum is 20 characters.";
}
Posted by: Guest on December-07-2019

Browse Popular Code Answers by Language