$data = file_get_contents("API LINK HERE");
$json = json_decode($data);
echo($json->zhohar->name);
我想要做的就是用回聲中的zhohar替換爲用戶輸入定義的變量。所以最後我有這樣的事情在對象中使用變量回聲
$username = $_POST['username'];
$data = file_get_contents("API LINK HERE");
$json = json_decode($data);
echo($json->$username->name);
但是,這顯然不起作用。任何人有一個想法如何解決這個問題?
http://stackoverflow.com/questions/804850/get-php-class-property-by-string – dm03514