本文整理匯總了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>
示例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>
示例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>
示例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>