gpt4 book ai didi

php - 如何从 MySQL 列创建 php 数组?

转载 作者:行者123 更新时间:2023-11-29 06:12:04 24 4
gpt4 key购买 nike

我有这样的表:

id | name                                 | link
---+--------------------------------------+---------------
1 |SAsasasdsa,Главная страница,Main page | addsad

我想得到这样的数组:

$arr = array('az'=>'SAsasasdsa','ru'=>'Главная страница','en'=>'Main page');

最佳答案

尝试

$qry = mysql_query('SELECT * FROM table');
//for multiple rows
$row = mysql_fetch_assoc($qry)) { $input[] = $row['name'] }
$key = array('az', 'ru', 'en');
foreach($input as $val) {
$output[] = array_combine($key,explode(',',$val));
}
echo "<pre>"; print_r($output);

引用

array_combine

关于php - 如何从 MySQL 列创建 php 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8600135/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com