I've modified some code, pasted from elsewhere to suit my needs, but i stumbled upon these weird single quotes, and their output surprised me a lot
$test = `nslookup google.com`;
echo $test;
This actually performs an nslookup
, without running doing anything but defining the variable, how is this possible?