<?php

function test1( )
{
    return array(   // breakpoint here won't be hit
        
        123
        );          // first and last line to be stepped onto
}

function test2( )
{
    return array(    // breakpoint here won't be hit
        1,2,3        // first and last line to be stepped onto
        ,4,5,6,6
        ,7,87,8
        
        ,123
        );
}

function test3( )
{
    return array(    // breakpoint here won't be hit
        array(1,2,3),// first and last line to be stepped onto
        array(4,5,6)
        );
}

test1();
test2();
test3();

?>