Ermitteln Sie die Anzahl der Spalten in einem Array
P粉818317410
2023-08-14 11:01:59
<p>Wie zähle ich die Anzahl der Typen in dieser Array-Ausgabe? Oder noch besser: Wie kann man „additional_data“ bei der Berechnung ausschließen? </p>
<pre class="brush:php;toolbar:false;">Array (
[124] =>
Array (
[Typ] =>
[Wert] => 4er-Pack
[label] => 4er-Pack
)
[125] =>
Array (
[Typ] =>
[Wert] => 6er-Pack
[label] => 6er-Pack
)
[126] =>
Array (
[Typ] =>
[Wert] => 12er-Pack
[label] => 12er Pack
)
[additional_data] => {"swatch_input_type": "text", "update_product_preview_image": "1", "use_product_image_for_swatch":0} )</pre>
<p>Versucht
<code>count(array_column($swatchLists, 'type'));</code></p>
<p>Aber die Ausgabe ist 0</p>
请尝试以下代码
每种类型的计数都将存储在
$countResult
中,数组键是类型值,数组值是计数。