我该如何定义

$allRoles = array('musician', 'leader', 'singer'); // !important


以上行动态in this answer?我的意思是说$allRoles实体应该来自MySQL表,而不是在这里定义每个实体。

最佳答案

$query =  "select role from user_role";

$result = mysqli_query($con,$query);

$allroles = array();
    while($row = mysqli_fetch_array($result))
    {
        $allroles[] = $row['role'];
    }


print_r($ allroles);

关于php - 使用PHP交叉制表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35983561/

10-11 07:02