String Length, Array in PHP

<?php
echo strlen("Hello world!");

$a[] = {'one', 'two', 'three', 'four'};

for($i = 0;$i<4;$i++)
    echo $a[$i] ;
?>
// even you can use html inside the double quotes