Answers for "str count in php"

PHP
11

how to check php string length

<?php
$name = 'abcdef';
echo strlen($str); // 6

$string = ' ab cd ';
echo strlen($str); // 7
?>
Posted by: Guest on August-24-2020
0

counting a string in php

strlen('your strings here!');
Posted by: Guest on May-10-2021
6

php string length

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

count php

$cars = array("Volvo","BMW","Toyota");
echo count($cars); // 3
Posted by: Guest on May-11-2021

Browse Popular Code Answers by Language