本文整理匯總了PHP中Track::total方法的典型用法代碼示例。如果您正苦於以下問題:PHP Track::total方法的具體用法?PHP Track::total怎麽用?PHP Track::total使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Track
的用法示例。
在下文中一共展示了Track::total方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: isset
?>
<table class="table-hover">
<tr>
<th><b><h3>Nombre</b></h3></th>
<th><b><h3>Album</b></h3></th>
<th><b><h3>Artista</b></h3></th>
<th><b><h3>Duracion</b></h3></th>
<th><b><h3>Tamaño</b></h3></th>
<th></th>
</tr>
<?php
$offset = isset($_GET['o']) ? $_GET['o'] : 0;
$num = Track::all(1000);
$numero_filas = Track::total();
?>
<?php
foreach (Track::all(10, $offset) as $track) {
?>
<tr id='<?php
echo $track->TrackId;
?>
'>
<td>
<button class='btn btn-default btn-sm button' type='button' onclick='modalEdit(<?php
echo utf8_encode($track->TrackId);
?>
)'><?php