<?php
$ff = 'ground zero';
function method1($a)
{
    echo($a);
}
function method2 ()
{
  global $ff;
    method1($ff);
}
method2();
