0

テキストファイルの文字を読み取ろうとしています。

$lang['content.home'] = 'Home';
$lang['content.about_us'] = 'About Us';
$lang['content.team'] = 'team';

キャラクターだけを取得する方法

content.homeホーム

content.about_us私たちについて

content.teamチーム

Explode('\'', $data) を使用してみましたが、うまくいきません

4

1 に答える 1

0

foreachあなたが得ることが でき$lang keyvalue

 $lang['content.home'] = 'Home';
 $lang['content.about_us'] = 'About Us';
 $lang['content.team'] = 'team';
 foreach($lang as $key=>$value){
    echo $key."<br>\n";
    echo $value;
 }
于 2013-04-17T07:46:27.220 に答える