Burada basit bir php fonksiyonu bulunuyor.
function hello($name) {
$message = 'Hello '.$name.' How are you feeling today?';
return $message;
}
Ben bu işlevi çalıştırdığınızda Ve bildiğiniz gibi, bir mesajı döndürür.
<?php
echo hello(Stackoverflow);
?>
Çıktı:
Hello Stackoverflow How are you feeling today?
(En azından burada) yankı kullanmadan bu mesajı görüntülemek için herhangi bir yolu var mı
gibi <?php hello(Stackoverflow); ?>
ve mesajı dönmelidir.