『壹』 php兩個數組元素匹配寫法效率的問題
用implode 將$b 中的所有元素鏈接成一個字元串,只用一個for循環,對$a中的元素挨個在合成字元串中查找。
$new=implode(" ",$b);
for($i=0,$i<count($a);$i++)
{
if(strstr($new,$a[$i]))
{
echo "find"."<br>";
break;
}
}
我比較菜 很可能不適用 你看看吧 呵呵
用正則表達式怎麼樣:
preg_match("",$b);
『貳』 php mysql_fetch_assoc 循環遍歷表格
有2個辦法,第一種直接使用sql的多表聯查,效率高,但是得到的數據table1會被擴展成table2一樣的條目數 要再次處理
select*fromtable1a,table2bwherea.orderid=b.orderid
第二種方法,先得到table11的數據,在循環中匹配table2到一個新的列名中隱敏行
$conn=mysqli_connect("127.0.0.1","root","123","test");
$sql="select*fromtable1";
$rs=mysqli_query($conn,$sql);
$Arr=拿敗array();
while($row=mysqli_fetch_assoc($rs)){
$sql="select*fromtable2whereorderid=".$row["orderid"];
$row["order_sku"]=mysqli_fetch_all(mysqli_query($conn,$sql),MYSQLI_ASSOC);
$Arr[]=$row;
}
print_r($Arr)
如果你是剛開始學php 建議直接拋棄mysql用mysqli 因為PHP5.5已經廢棄灶嘩mysql方法了