本文整理汇总了PHP中Menu::cargarOpcion方法的典型用法代码示例。如果您正苦于以下问题:PHP Menu::cargarOpcion方法的具体用法?PHP Menu::cargarOpcion怎么用?PHP Menu::cargarOpcion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Menu
的用法示例。
在下文中一共展示了Menu::cargarOpcion方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: cargarOpcion
private $titulos = array();
public function cargarOpcion($en, $tit)
{
$this->enlaces[] = $en;
$this->titulos[] = $tit;
}
public function mostrar()
{
for ($f = 0; $f < count($this->enlaces); $f++) {
echo '<a href="' . $this->enlaces[$f] . '">' . $this->titulos[$f] . '</a>';
echo "-";
}
}
}
$menu1 = new Menu();
$menu1->cargarOpcion('http://www.facebook.com', 'Facebook');
$menu1->cargarOpcion('http://www.yahoo.com', 'Yhahoo');
$menu1->cargarOpcion('http://www.msn.com', 'MSN');
$menu1->mostrar();
class CabeceraPagina
{
private $titulo;
private $ubicacion;
public function inicializar($tit, $ubi)
{
$this->titulo = $tit;
$this->ubicacion = $ubi;
}
public function graficar()
{
echo '<div style="font-size:40px;text-align:' . $this->ubicacion . '">';
示例2: mostrar
/**
*
*/
class Menu
{
private $enlaces = array();
private $titulos = array();
function cargarOpcion($en, $tit)
{
$this->enlaces[] = $en;
$this->titulos[] = $tit;
}
public function mostrar()
{
/*
echo "Array de enlaces <br />";
print_r($this->enlaces);
echo "<br />";
print_r($this->titulos);
*/
for ($i = 0; $i < count($this->enlaces); $i++) {
echo '<a href="' . $this->enlaces[$i] . '">' . $this->titulos[$i] . '</a> ';
}
}
}
$menu1 = new Menu();
$menu1->cargarOpcion("http://www.google.com", "Buscador Google");
$menu1->cargarOpcion("http://www.yahoo.com", "Buscador Yahoo");
$menu1->cargarOpcion("http://www.msn.com", "MSN");
$menu1->mostrar();
示例3: mostrar
<?php
/**
*
*/
class Menu
{
private $enlaces = array();
private $titulos = array();
function cargarOpcion($en, $tit)
{
$this->enlaces[] = $en;
$this->titulos[] = $tit;
}
public function mostrar()
{
/*
*
*/
for ($i = 0; $i < count($this->enlaces); $i++) {
echo '<a href="' . $this->enlaces[$i] . '">' . $this->titulos[$i] . '</a> ';
}
}
}
$menu1 = new Menu();
$menu1->cargarOpcion("http://www.google.com", "Buscador Google<br>");
$menu1->cargarOpcion("http://www.yahoo.com", "Buscador Yahoo<br>");
$menu1->cargarOpcion("http://www.msn.com", "MSN<br>");
$menu1->cargarOpcion("http://www.marca.com", "Marca<br>");
$menu1->mostrar();
示例4: cargarOpcion
<?php
class Menu
{
private $enlaces = array();
private $titulos = array();
public function cargarOpcion($en, $tit)
{
$this->enlaces[] = $en;
$this->titulos[] = $tit;
}
public function mostrar()
{
for ($f = 0; $f < count($this->enlaces); $f++) {
echo '<a href="' . $this->enlaces[$f] . '">' . $this->titulos[$f] . '</a>';
echo "-";
}
}
}
$menu1 = new Menu();
$menu1->cargarOpcion('http://www.google.com', 'Google');
$menu1->cargarOpcion('http://www.yahoo.com', 'Yhahoo');
$menu1->cargarOpcion('http://www.msn.com', 'MSN');
$menu1->mostrar();
// Implementar una clase que muestre una lista de hipervínculos en forma horizontal (básicamente un menú de opciones)
?>
示例5: Menu
<?php
include './menu.php';
$menu1 = new Menu();
$menu1->cargarOpcion('http://www.marca.com', 'Marca');
$menu1->cargarOpcion('http://www.elpais.com', 'El Pais');
$menu1->cargarOpcion('http://www.elmundo.com', 'El Mundo');
$menu1->mostrar("horizontal");
echo '<br>';
$menu2 = new Menu();
$menu2->cargarOpcion('http://www.marca.com', 'Marca');
$menu2->cargarOpcion('http://www.elpais.com', 'El Pais');
$menu2->cargarOpcion('http://www.elmundo.com', 'El Mundo');
$menu2->mostrar("vertical");