Notice: A non well formed numeric value encountered.
Notice: A non well formed numeric value encountered.
Found this bad boy today. Simple mistake, but a little harder to figure out, I suppose. This happens when you have something like
date(‘M d’, ‘2007-09’);
This obviously doesn’t work. But that is what the notice it gives you. So just toss on a strtotime and all will be good.
date(‘M d’, strtotime(‘2007-09’));