Functions and Control Structures
<?php
    $len = strlen($input);
    phpinfo();
    while($not_done) { ... }
    for($i = 0; $i < 10; $i++) { ... }
?>