There is an error saying, headers are already sent, showing that print_r occuring the error, but in tutorial the print_r's array appears before navbar at the top of web page
class PostController extends AppController
{
public function actionTest()
{
$names = ['Ivanov', 'Petrov', 'Sidorov'];
print_r($names);
return $this->render('test');
}
}