PHP同时执行2个语句,代码如何编写? 40
如何同是执行以下两条代码:$info['order_list']=M($this->order_goods_table)->where($where)->select()...
如何同是执行以下两条代码:
$info['order_list'] = M($this->order_goods_table)->where($where)->select();
$info["order_list"] = M($this->news_table)->where(array("sku"=>$info["sku"]))->select();
系统默认执行下面一条。
完整代码:
if($oid)
{
$where['uid'] = $this->uid;
$where['oid'] = $oid;
$info = M($this->order_table)->where($where)->find();
if(is_array($info)){
$info['order_list']1 = M($this->order_goods_table)->where($where)->select();
$info["order_list"]2 = M($this->news_table)->where(array("sku"=>$info["sku"]))->select();
}
$this->assign('info', $info);
}
if(!is_array($info))
{
$order_type = $this->_get('order_type');
if(!$order_type)
{
header('location:'.U('index',array('order_type'=>1)));
}
}else
{
$order_type = $info['order_type'];
} 展开
$info['order_list'] = M($this->order_goods_table)->where($where)->select();
$info["order_list"] = M($this->news_table)->where(array("sku"=>$info["sku"]))->select();
系统默认执行下面一条。
完整代码:
if($oid)
{
$where['uid'] = $this->uid;
$where['oid'] = $oid;
$info = M($this->order_table)->where($where)->find();
if(is_array($info)){
$info['order_list']1 = M($this->order_goods_table)->where($where)->select();
$info["order_list"]2 = M($this->news_table)->where(array("sku"=>$info["sku"]))->select();
}
$this->assign('info', $info);
}
if(!is_array($info))
{
$order_type = $this->_get('order_type');
if(!$order_type)
{
header('location:'.U('index',array('order_type'=>1)));
}
}else
{
$order_type = $info['order_type'];
} 展开
2016-01-29
展开全部
机器本质上,一次执行一条语句...想达到好像一次执行多条语句的效果,学多线程哦,对了,我是用java的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询