1--TEST-- 2Testing heredoc with tabs before identifier 3--FILE-- 4<?php 5 6$heredoc = <<< A 7 8foo 9 10 A; 11A; 12 13var_dump(strlen($heredoc) == 9); 14 15?> 16--EXPECT-- 17bool(true) 18