我有一个存储我的数组的循环,还需要检查并显示不应该重复的内容。例如:
Loop
{
$myarray = storecontent
for($i=0 ; $i<count($myarray) ; $i++)
{
if($myarray == storecontent)
{
}else
{
display content;
}
}
}
我做过类似的事情,其中一个页面处于循环中,并且该页面包含每个帖子的详细信息,其中很少有类似的内容, 我需要显示像
Content1:
my_post1;
my_post2;
Content2:
my_post1;
my_post2;
答案 0 :(得分:1)
使用PHP array sort function按字母顺序对数组进行排序
答案 1 :(得分:1)
<?php
$myarray = array_unique($myarray);
sort($myarray);
foreach($myarray as $ele){
echo $ele;
}
?>