-3
私はphpとhtmlを使用してホームラップダッシュボードを構築しています。現在、配列から情報を取り出し、div内に表示しようとしています。配列に提供される情報は、iframeのURLと、高さと幅の調整です。私の質問は、どのように私は正しく表示することができますこの配列の特定の要素を取得するだろうです。PHPを使用して多次元配列の特定の要素を取得する方法
$dl = [
'dashlet1' => [
'url' => 'some random url',
'height' => 'height=200',
'width' => 'width=450'
],
'dashlet2' => [
'url' => 'another random url',
'height' => 'height=200',
"width" => 'width=450'
],
'dashlet3' => [
'url' => 'another random url',
'height' => 'height=200',
'width' => 'width=450'
],
'dashlet4' => [
'url' => 'another random url',
'height' => 'height=200',
'width' => 'width=350'
],
'dashlet5' => [
'url' => 'another random url',
'height' => 'height=200',
'width' => 'width=450'
],
'dashlet6' => [
'url' => 'another random url',
'height' => 'height=200',
'width' => 'width=450'
],
'dashlet7' => [
'url' => 'another random url',
'height' => 'height=200',
'width' => 'width=350'
],
'dashlet8' =>[
'url' => 'another random url',
'height' => 'height=200',
'width' => 'width=450'
]
];
http://php.net/manual/en/control-structures.foreach.phpマニュアルを読んで起動し – AbraCadaver
と[MCVE] –
'] [' url '] '。 [配列のドキュメントを参照](http://php.net/manual/en/language.types.array.php#language.types.array.syntax.accessing) –