Reputation: 56487
Is there any difference between how PHP versions parse this (or will that make any issue somewhere), if I use such line:
if ( file_exists($x="myfile") && include($x) )
{
.....
are there any case when $x
might not be set in include
?
Upvotes: 0
Views: 59