Call Variable From Function In PHP [duplicate]

Hello Guys I Have This Fucntion

function Say_Hello () {
      $Hello  = 'Hi';
}

return $Hello; // Undefiend $Hello Variable 

And I Want To Call Hello Variable Outside The Function But I Have This Error

Undefiend $Hello Variable

Can Any One Help Me Please?