当前位置: 首页>>代码示例>>PHP>>正文


PHP Track::all方法代码示例

本文整理汇总了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.
|
开发者ID:niceboy120,项目名称:Music-Platform,代码行数:31,代码来源:routes.php

示例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>
开发者ID:stealthrob,项目名称:Dangerous_Eagle,代码行数:31,代码来源:index.php

示例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&ntilde;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 
开发者ID:dev2me,项目名称:music2.com,代码行数:31,代码来源:view.php


注:本文中的Track::all方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。