find string lenght in php

PHP
Use the PHP strlen() function<?php
$str = 'Hello World!';
echo strlen($str); // 12
?>
Source

Also in PHP: