當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Portfolio::breadcrumb方法代碼示例

本文整理匯總了PHP中Portfolio::breadcrumb方法的典型用法代碼示例。如果您正苦於以下問題:PHP Portfolio::breadcrumb方法的具體用法?PHP Portfolio::breadcrumb怎麽用?PHP Portfolio::breadcrumb使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Portfolio的用法示例。


在下文中一共展示了Portfolio::breadcrumb方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

<?php

require "../../Portfolio.php";
Portfolio::header(1, " - Wander");
?>

<div class="col-md-8 col-md-offset-2">

    <div class="col-md-12">
        <?php 
Portfolio::breadcrumb("Enjmin", "Wander");
?>
        <h3>Wander - Path of Trust</h3>
    </div>
    <div class="col-md-12">
        <table class="table table-bordered">
        <tr>
            <th>Genre</th>
            <th>Plateform</th>
            <th>Engine</th>
            <th>Language</th>
            <th>Dev. Time</th>
        </tr>
        <tr>
            <td>Plateform / Adventure</td>
            <td>PC</td>
            <td>Unity3D</td>
            <td>C#</td>
            <td>February 2013 - June 2013 (v1)<br/>
             September 2013 - December 2013 (v2)</td>
        </tr>
開發者ID:Xipiryon,項目名稱:Portfolio,代碼行數:31,代碼來源:wander.php

示例2:

<?php

require "../../Portfolio.php";
Portfolio::header(1, " - Event[0]");
?>

<div class="col-md-8 col-md-offset-2">

    <div class="col-md-12">
        <?php 
Portfolio::breadcrumb("Enjmin", "Event[0]");
?>
        <h3>Event[0]</h3>
    </div>

    <div class="col-md-12">
        <table class="table table-bordered">
        <tr>
            <th>Genre</th>
            <th>Plateform</th>
            <th>Engine</th>
            <th>Language</th>
            <th>Dev. Time</th>
        </tr>
        <tr>
            <td>AI Interaction</td>
            <td>PC</td>
            <td>Unity3D</td>
            <td>C#</td>
            <td>October 2013 - March 2014</td>
        </tr>
開發者ID:Xipiryon,項目名稱:Portfolio,代碼行數:31,代碼來源:event0.php

示例3: Engine

<?php

require "../../Portfolio.php";
Portfolio::header(1, " - MIRA");
?>

<div class="col-md-8 col-md-offset-2">

    <div class="col-md-12">
        <?php 
Portfolio::breadcrumb("Enjmin", "MIRA");
?>
        <h3>MIRA</h3>
    </div>

    <div class="col-md-12">
        <table class="table table-bordered">
        <tr>
            <th>Genre</th>
            <th>Plateform</th>
            <th>Engine</th>
            <th>Language</th>
            <th>Dev. Time</th>
        </tr>
        <tr>
            <td>God Game / SandBox</td>
            <td>PC</td>
            <td>Custom Engine (SFML / OpenGL / Fmod)</td>
            <td>C++ / Lua</td>
            <td>May 2013 - June 2013</td>
        </tr>
開發者ID:Xipiryon,項目名稱:Portfolio,代碼行數:31,代碼來源:mira.php

示例4:

<?php

require "../../Portfolio.php";
Portfolio::header(1, " - Fakteur");
?>

<div class="col-md-8 col-md-offset-2">

    <div class="col-md-12">
        <?php 
Portfolio::breadcrumb("Enjmin", "Fakteur");
?>
        <h3>Fakteur</h3>
    </div>

    <div class="col-md-12">
        <table class="table table-bordered">
        <tr>
            <th>Genre</th>
            <th>Plateform</th>
            <th>Engine</th>
            <th>Language</th>
            <th>Dev. Time</th>
        </tr>
        <tr>
            <td>Adventure</td>
            <td>PC</td>
            <td>Unity3D</td>
            <td>C#</td>
            <td>July 2013 - September 2013</td>
        </tr>
開發者ID:Xipiryon,項目名稱:Portfolio,代碼行數:31,代碼來源:fakteur.php


注:本文中的Portfolio::breadcrumb方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。