Reputation: 14142
I have a self explanatory error in my Yii application - I know what the problem is, I would just like to know which line & file this is on.
htmlspecialchars() expects parameter 1 to be string, array given
Can anyone explain the best/easiest way to use the Yii framework to output the exact line number that this error is coming from? I already have some debugging on but it all looks confusing and nowhere does it say Line xxx in file somename.php
Upvotes: 2
Views: 860
Reputation: 3
what about using these 2 lines on your index.php??
error_reporting(E_ALL);
ini_set('display_errors', 'on');
Upvotes: 0
Reputation: 8840
You can try this Tutorial :
As you expected, this tutorial showing only file name and line number only.
http://www.yiiframework.com/wiki/113/how-to-customize-error-handling-in-console-mode-applications/
Upvotes: 1