So wählen Sie nur eine Spalte in einem Array aus
P粉410239819
2023-09-03 13:47:01
<p>Ich habe ein Array wie unten in Laravel und möchte die darin enthaltenen Spalten extrahieren. </p>
<pre class="brush:php;toolbar:false;">Array
(
[0] =>
(
[table] => form_identification
[Spalte] => Region
)
[1] =>
(
[table] => form_identification
[Spalte] => Provinz
)
)</pre>
<p>Ich möchte, dass die Ausgabe wie folgt aussieht</p>
<pre class="brush:php;toolbar:false;">Array
(
[0] =>
(
[Spalte] => Region
)
[1] =>
(
[Spalte] => Provinz
)
)</pre></p>
将您的第一个数组视为
$datas
变量,我们将使用foreach循环整个数组