我正在尝试从 mySql 数据创建一个 php 关联数组,其中id
的关键是,所以我可以将它与array_key_exists
. 但问题是,钥匙似乎是别的东西,而不是id
. 需要做什么才能使数组 key id
。
$conn = connect();
$stmt = $conn->prepare("select id, concat(type,status) as status from arraytest");
$stmt->execute();
$myArray = $stmt->fetchAll(PDO::FETCH_ASSOC);
print_r(($myArray));
期望的输出
array("3"=>"00","6"=>"01");
电流输出
Array ( [0] => Array ( [id] => 3 [status] => 00 ) [1] => Array ( [id] => 6 [status] => 01 ) )
示例表数据:
"id" "type" "status"
"3" "0" "0"
"6" "0" "1"