How to find string length in PHP
Topic: PHP / MySQLPrev|Next
Answer: Use the PHP strlen()
function
You can simply use the PHP strlen()
function to get the length of a string. The strlen()
function return the length of the string on success, and 0 if the string is empty.
Let's take a look at the following example to understand how it actually works:
Example
Try this code »<?php
$str1 = 'Hello world!';
echo strlen($str1); // Outputs: 12
echo "<br>";
$str2 = ' Hello world! ';
echo strlen($str2); // Outputs: 17
?>
Related FAQ
Here are some more FAQ related to this topic: