1
include 'core/init.php'; 
include 'includes/overall/header.php';

$post_id = $_GET['post_id'];

$check_like = mysql_query("SELECT liker, liker_username FROM `likes` WHERE `post_id`='$post_id' ");
                while($run_check_like = mysql_fetch_assoc($check_like)) {

                $post_liker[] = $run_check_like['liker'];

                $post_liker_profile[] = $run_check_like['liker_username'];           
        }   

include 'includes/overall/footer.php';

数组一是 $post_liker; 数组二是 $post_liker_profile;

我想呼应某事。作为 $post[$post_liker][$post_liker_profile];

4

2 回答 2

0

你的意思是使用类似的东西:array_combine

$post = array_combine($post_liker, $post_liker_profile);
于 2013-08-21T22:41:53.720 回答
0

$i=0;

$array[$i][$i]=$array_one[$i]."*".$array_two[$i];

在存储时尝试像这样使用,如果您需要返回值,您可以再次使用 * 拆分。

如果您的数组值包含 * 使用其他不存在的东西。

于 2013-08-21T23:07:40.130 回答