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


PHP articulo::idSubToId方法代碼示例

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


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

示例1: Switchery

      type="image/png" 
      href="images/fav.png" />
</head>
<body>
          
<?php 
include 'include/header.php';
?>
    <!--Nombre--codigo y/o id*, proveedor*, precio*, cantidad de stock*, descripcion*, categoria, tags -->
    <div id="wrapper">
        <div id="edit"><a href="#"><img id="ed" src="images/edit.svg" width="100px" height="37px" style="float: right; display:block; margin: 10px;"></a></div>
        <div id="img-desc" style="float:left;width:40%;">
            <img id="grande" src="images/canilla2.jpg" style="float:left;width:100%;margin-right: 30px;">
        </div>
<?php 
if (!(isset($_GET["id"]) && ($articulo = articulo::toHtml($_GET["id"])) || isset($_GET["sub"]) && ($articulo = articulo::toHtml(articulo::idSubToId($_GET["sub"]))))) {
    exit;
}
//ARTICULO NO EXISTE
echo $articulo;
?>
    </div>
<script>
elems.forEach(function(html) {
  var switchery = new Switchery(html);
});
</script>
    <div id="scrollup" style="z-index:8; position:fixed; bottom:0%; float:right;"><img src="images/up.svg" width="50px"/></div>
</body>

    <script type="text/javascript" src="js/bootstrap.js"></script>
開發者ID:StockersSRL,項目名稱:Lucas,代碼行數:31,代碼來源:articulo.php


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