本文整理汇总了PHP中app\models\Product::findAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Product::findAll方法的具体用法?PHP Product::findAll怎么用?PHP Product::findAll使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Product
的用法示例。
在下文中一共展示了Product::findAll方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionSubastas
public function actionSubastas()
{
$products = Product::findAll(['status' => 'ACTIVE', 'auction' => 'YES']);
$auctions = Auction::findAll(['status' => 'ACTIVE']);
$time = Params::findOne(['name' => 'auction_time'])->value;
return $this->render('auction', ['auctions' => $auctions, 'time' => $time]);
}
示例2: date
$replyTo .= '<a href="user.php?uid=' . $last_uid . '">' . $last_name . '</a> ';
} else {
$replyTo = '';
}
$GLOBALS['arr'][1] .= '<p>[#' . $id . '楼]<a href="usr.php?uid=' . $uid . '">' . $username . '</a>' . $replyTo . date('Y-m-d H:i:s', $comment_time);
$GLOBALS['arr'][1] .= ':</p>';
$GLOBALS['arr'][1] .= $content;
$GLOBALS['arr'][1] .= '</div>' . "\n\n";
showAllComment(1, $id, $id);
$len--;
}
}
}
$script = '<script> aCommentList=[];' . "\n\n" . $GLOBALS['arr'][0];
$script .= '</script>';
$product = Product::findAll(['aid' => $aid]);
// var_dump($product);
// $size = Product:
$sizes = ArrayHelper::map($product, 'id', 'size');
// var_dump($sizes);
foreach ($sizes as $k => $v) {
if (!is_array($v)) {
$sizes[$k] = explode(',', $v);
}
}
$colors = ArrayHelper::map($product, 'id', 'color');
foreach ($colors as $ke => $cv) {
if (!is_array($cv)) {
$colors[$ke] = explode(',', $cv);
}
}