本文整理汇总了PHP中Track::all方法的典型用法代码示例。如果您正苦于以下问题:PHP Track::all方法的具体用法?PHP Track::all怎么用?PHP Track::all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Track
的用法示例。
在下文中一共展示了Track::all方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
}
return View::make('user.register');
});
Route::get('tracks/(:any)', function ($key) {
$track = Track::where('urlkey', '=', $key)->take(1)->get();
if (count($track) > 0) {
return View::make('tracks.view')->with('track', $track);
}
return Response::error('404');
});
Route::get('/', function () {
$track = new Track(array('admin' => 1, 'status' => 1, 'title' => 'Little Dragon - Twice (LSB Bootleg)', 'track_artist' => 1, 'urlkey' => 'djdjd^#*BXCB@!*#@&(SHS', 'result_purchase_url' => 'http://www.little-dragon.se', 'result_download_url' => 'http://www.little-dragon.se', 'player_download_url' => 'http://www.little-dragon.se'));
//$track->save();
$user = new User(array('username' => 'TheHydroImpulse', 'email' => 'dnfagnan@gmail.com', 'password' => 'password', 'salt' => 'd483jddj', 'banned' => false, 'activated' => true));
//$user->save();
$tracks = Track::all();
return View::make('tracks.index')->with('tracks', $tracks);
});
/*
|--------------------------------------------------------------------------
| Application 404 & 500 Error Handlers
|--------------------------------------------------------------------------
|
| To centralize and simplify 404 handling, Laravel uses an awesome event
| system to retrieve the response. Feel free to modify this function to
| your tastes and the needs of your application.
|
| Similarly, we use an event to handle the display of 500 level errors
| within the application. These errors are fired when there is an
| uncaught exception thrown in the application.
|
示例2: 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
echo $track->Name;
?>
</button>
示例3: foreach
<table class="centered responsive-table striped">
<tr>
<th class="text-center">Nombre</th>
<th class="text-center">Album</th>
<th class="text-center">Artista</th>
<th class="text-center">Duracion</th>
<th class="text-center">Tamaño</th>
<th></th>
</tr>
<?php
foreach (Track::all(10000) as $track) {
?>
<tr>
<td><a <?php
echo "href=panel/track.php?id='" . $track->TrackId . "'";
?>
class="indigo-text text-darken-4"><?php
echo $track->Name;
?>
</a></td>
<td><a <?php
echo "href=panel/album.php?id='" . $track->Album->AlbumId . "'";
?>
class="teal-text text-lighten-1"><?php
echo $track->Album->Title;
?>
</a></th>
<td><a <?php
echo "href=panel/artist.php?id='" . $track->Album->Artist->ArtistId . "'";
?>
><?php