<?php $x = 'Hyvor'; $y = 'Developer'; function websiteName() { echo $GLOBALS['x'], $GLOBALS['y']; } websiteName(); // outputs HyvorDeveloper