php_string length

                     PHP LENGTH OF STRING
<
!DOCTYPE html>

<html>
<body>

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


o/p : 12

Comments :

Post a Comment