Idiot PHP Reminder of the Day

Don’t use require_once within functions. Especially when you iterate multiple times over that function. Use require or include instead, because the successive calls won’t import the additional code any more.

Leave a Reply