<?php $a = 1; /* global scope */
function test() { echo $a }
test();
in javascript, $a would be 1 but in PHP it is undefined and won't produce output,