<?php

$x = 10;
$y = 20;

//Global variables
function add () {
  echo $GLOBALS['x'] + $GLOBALS['y'];
  echo '<br>';
}

//Static variables
function test() {
  static $x = 10;
  $result = $x;
  return $result;
} 

add();
echo test();