<?php

$a = 1; 
$b = 2; 

function bagor()
{ 
	global $b;
    echo $b; 
} 
bagor();