Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've noticed that most of my more annoying errors generate parse errors similar to this one in my logs:

PHP Parse error:  syntax error, unexpected T_FUNCTION in 
d:\docume~1\***\locals~1\temp\tmpwvpo4p on line 5.

This is annoying to say the least, because I have not a clue what exactly that is supposed to be, and like a good program, PHP cleans up the temporary files after itself properly.

Anyone have any ideas what is happening here, or how I can figure out what's actually going on?

share|improve this question

closed as off topic by Matthew Scharley, Marc Gravell Oct 15 '09 at 15:36

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

Are you using a PHP accelerator somewhere? If so, disable that and try again.

Other than that, check that your application isn't writing and executing its own scripts. That sort of thing would cause the behaviour you're seeing, but is also quite insane :)

share|improve this answer
No, I'm not writing/including my own scripts, yes, that would be quite insane. And no, not to my knowledge... I'm using a stock standard PHP5 installer installation on my dev machine. – Matthew Scharley Oct 20 '08 at 11:36

Are you including files from HTTP or other remote protocols, or via phar or zip archives?

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.