Hyvor Developer
  Home   Download   Copy
Code
<?php
$x = 'Hyvor';
$y = 'Developer';

function websiteName() {
	global $x, $y; 
	echo $x, $y;
}

websiteName(); // outputs HyvorDeveloper
Result