Answers for "strlen php"

PHP
63

php strpos

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Posted by: Guest on August-06-2019
24

php string length

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

$str = ' ab cd ';
echo strlen($str); // 7
?>
Posted by: Guest on March-13-2020
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
11

string length php

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

$str = ' ab cd ';
echo strlen($str); // 7
?>
Posted by: Guest on February-12-2020
2

strlen php

<?php
echo strlen("Hello world!");	// will output 12
?>
Posted by: Guest on January-08-2021
0

strlen php

<?php

$string='YourString';

echo strlen($string); //outputs 10

/***
how do it will count 

Y  | o |  u |  r  | S | t  | r  | i  | n  |  g

1  | 2 |  3 |  4  | 5 | 6  | 7  | 8  | 9  | 10
***/
?>
Posted by: Guest on June-08-2021

Browse Popular Code Answers by Language