本文整理匯總了PHP中Produto::findAll方法的典型用法代碼示例。如果您正苦於以下問題:PHP Produto::findAll方法的具體用法?PHP Produto::findAll怎麽用?PHP Produto::findAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Produto
的用法示例。
在下文中一共展示了Produto::findAll方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: notifyEstoque
function notifyEstoque()
{
$notifications = array();
$produtos = Produto::findAll();
foreach ($produtos as $produto) {
if ($produto->getStEstoque() == 'FT') {
$notifications[] = $produto->getIdProduto();
}
}
return $notifications;
}
示例2: toKG
<table id="estoque" class="table table-condensed table-hover">
<thead>
<tr>
<th>#</th>
<th>Produto</th>
<th>Quilos</th>
<th>Métros</th>
<th>Péças</th>
</tr>
</thead>
<tbody>
<?php
$produtos = Produto::findAll();
?>
<?php
foreach ($produtos as $produto) {
?>
<tr>
<td><?php
echo $produto->getIdProduto();
?>
</td>
<td><?php
echo $produto->getNmProduto();
?>
</td>
<td><?php
echo toKG($produto->getQtEstoque('KG'));
示例3:
</div>
<!-- /widget-header -->
<div class="widget-content">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th class="span1"> # </th>
<th class="span6"> Nome do Produto</th>
<th class="span2"> Preço</th>
<th class="span2"> Quantidade</th>
<th class="td-actions"> </th>
</tr>
</thead>
<tbody>
<?php
foreach ($produto->findAll() as $key => $value) {
?>
<tr>
<td> <?php
echo $count++;
?>
</td>
<td><img src="../img/produtos/<?php
echo $value->url_foto_capa;
?>
" width="50"> <?php
echo $value->nome;
?>
</td>