私の関数は、本来あるべきものを出力しています。これを実行すると、「その時、神々が手を差し伸べ、このクエストを支援するために の力を与えることに決めた」というだけです。両方の配列から同じインデックスを選択して、エコーに変数を入力するにはどうすればよいですか?
function gift_giver()
{
$people = array ("$heroname", "$friendname", "$wizardname", "Captain Rumbeard", "$frogname");
$gifts = array("a magic compass", "the gift of no fear", "all seeing powers", "more rum", "a delightful lilly pad");
$gift_selector=(rand(0,4));
$gift_recipient=$people[$gift_selector];
$gift_present=$gift[$gift_selector];
echo "It was then that the gods reached out and decided to give $gift_recipient the power of $gift_present to aid in this quest.<br/><br/>";
}