class database {
public function dataarray() {
$array = array('John', 'Alex', 'Smith','Doe','Mane','Rio');
}
}
$export = new database();
echo $export->dataarray(); // ??? what echo code/ other style code, to show only name 'John' value.
我只想回顯上面$ array的「值」(約翰)。如果沒有指定密鑰,我該如何實現這一點?可能嗎?如果未指定密鑰,如何在數組中回顯特定值?
您需要從方法中返回數據。然後你可以訪問你想要的索引。 – Rizier123
爲什麼這個問題投了兩次? – Chris