Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

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