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


PHP Menu::cargarOpcion方法代碼示例

本文整理匯總了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 . '">';
開發者ID:KevinRamirez,項目名稱:Portafolio_ucp,代碼行數:31,代碼來源:prueba.php

示例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();
開發者ID:QuiqueGilB,項目名稱:Daw2ClasesJuanjo,代碼行數:30,代碼來源:menu.php

示例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();
開發者ID:alexcalde99,項目名稱:servidor,代碼行數:30,代碼來源:menu.php

示例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)
?>

開發者ID:AriYezz,項目名稱:Sabado,代碼行數:26,代碼來源:ejer3.php

示例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");
開發者ID:alexcalde99,項目名稱:servidor,代碼行數:14,代碼來源:index.php


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