私がやりたいことを説明するための小さな静的テスト スクリプトを作成しました。
<?php
$test = "hello";
$demo = "php";
$x = array("hello"=>"world","php"=>"script");
echo $x[$test]."<br />";
echo $x[$demo];
?>
出力: ワールド スクリプト
値がデータベースから取得されたときに、どうすれば同じ出力を動的に取得できますか。
$result = mysql_query("SELECT font FROM stone");
while($row = mysql_fetch_array($result))
{
echo $x[$row['font']]."<br/>";// values of $row['font'] are 'test' and demo
}