Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-Get-the-length-of-a-string-using-strlen()-function-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
echo strlen("Hello world!");
?> 
 
</body>
</html>

Output :