在数组中定义一组非结构化数组

时间:2019-08-04 10:31:48

标签: php arrays

  

解析错误:语法错误,意外的“数组”(T_ARRAY),预期为“)”   第11行的C:\ xampp \ htdocs \ php_sandbox \ assign_ship_class.php

function test(){
$distie_classes = array
    (
        array(
        "distie" => "C1",
        "ship_class" => "C1_29-95",
        "ship_class" => "C1_49-95"
        )
        array(
        "AC",
        "ship_class" => "AC_29-95"
        )
    );


}

$shipping_class = array_search("C1", array_column($distie_classes, "distie"));
print $shipping_class;

0 个答案:

没有答案