Sorry, the first time I looked at your crontab, the quotes jumped out at me as the immediate problem. Now that I look at it more closely, I have two comments. The first is that I don't understand what "cronlog" is. I don't see any mention of it at Google. Is it a script that you've written?
The second problem is that wget is specifically for web sites. If you want to point to a PHP file, you don't necessarily need wget. You can just say: php /directory/path/to/the/file.php
But if you explicitly need the file to get run through a web browser (maybe it's on a different server or maybe there are mod_rewrite commands or maybe your PHP script checks referer values, for example), then you need to use wget AND you need to specify a url like this: wget http://www.servername.com/file.php
Google for crontab examples and you will find lots of examples of the correct syntax.