<?php
function breakpoint1()
{
	$a = array( // line #1
		1 => "first", // line #1
		2 => "second",
	);
}

breakpoint1();
?>
