作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 2 列的简单表格:ID
和 Name
.它看起来像这样:
License_ID License_Name
5 xxx
8 yyy
13 zzz
license_id
当
license_name
提供。我该如何编写这个数组?
$array = array(
'xxx' => 5,
'yyy' => 8,
'zzz' => 13
);
最佳答案
使用与许可证名称对应的键和与许可证 ID 对应的值形成一个数组,如下所示:
$sql = 'SELECT * FROM table'; // Optionally add a WHERE clause
$result = mysql_query( $sql);
$array = array();
while( $row = mysql_fetch_array( $result))
{
// Form the array
$array[ $row['License_Name'] ] = $row['License_ID'];
}
mysql_free_result( $result);
$array = array(
'xxx' => 5,
'yyy' => 8,
'zzz' => 13
);
$license_id = 8;
$id = $array[ $license_id ]; // $id = 'yyy';
$array = array(
array(
'license_id' => 5,
'license_name' => 'xxx'
),
array(
'license_id' => 8,
'license_name' => 'yyy'
),
array(
'license_id' => 13,
'license_name' => 'zzz'
)
);
$license_name = 'zzz';
foreach( $array as $entry)
{
if( $entry['license_name'] == $license_name)
{
echo 'Found ID of ' . $license_name . ' - ' . $entry['license_id'];
break;
}
}
$array = array(
'xxx' => array(
'license_id' => 5,
'license_name' => 'xxx'
),
'yyy' => array(
'license_id' => 8,
'license_name' => 'yyy'
),
'zzz' => array(
'license_id' => 13,
'license_name' => 'zzz'
)
);
$license_name = 'zzz';
$license_id = $array[ $license_name ]['license_id'];
关于php - 如何将两列表写为数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8253359/
我是一名优秀的程序员,十分优秀!