<?php

$a = "Merhaba Dünya";
function test($a){
return $a;
};

echo test($a);

?>