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


PHP setHome函數代碼示例

本文整理匯總了PHP中setHome函數的典型用法代碼示例。如果您正苦於以下問題:PHP setHome函數的具體用法?PHP setHome怎麽用?PHP setHome使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: retornaHtmlArtigo

function retornaHtmlArtigo()
{
    $post = retornaPosts();
    $html = '';
    for ($i = 0; $i < count($post); $i++) {
        $link = setHome() . "paginas/post.php?id=" . $post[$i]['id_post'] . "&titulo=" . $post[$i]['titulo_post'];
        $html = $html . '<article>
						<div class="titulo_artigo"><a href=' . $link . '><h1>' . $post[$i]['titulo_post'] . '</h1></a></div>
						<div class="subtitulo_artigo">' . $post[$i]['subtitulo_post'] . '</div>
						<div class="data_artigo">' . $post[$i]['data_post'] . '</div>
						<div class="conteudo_artigo"><p>' . $post[$i]['resumo_post'] . '</p></div>
						<div class="video_artigo"><iframe width="654" height="480" src=' . $post[$i]['link_video'] . ' frameborder="0" allowfullscreen></iframe></div>
						<div class="autor_artigo">Postado por: <a href="#">' . $post[$i]['autor_post'] . '</a></div>
						<hr>
					</article><!--article-->';
    }
    return $html;
}
開發者ID:BrunoPastorello,項目名稱:blog_video_aulas_cad,代碼行數:18,代碼來源:post_blog.php

示例2: date

echo $autor['nome'];
?>
" alt="Avatar de <?php 
echo $autor['nome'];
?>
">
            <span class="autor">Por: <strong><?php 
echo $autor['nome'];
?>
</strong></span>
            <span class="data">dia: <strong><?php 
echo date('d/m/Y H:i:s', strtotime($art['data']));
?>
</strong></span>
            <span class="cat">em: <a href="<?php 
setHome();
?>
/categoria/<?php 
echo getCat($art['categoria'], 'url');
?>
"><?php 
echo getCat($art['categoria'], 'nome');
?>
</a></span>
            <span class="tags"><?php 
echo $art['tags'];
?>
</span>
            <span class="views"><?php 
echo $art['visitas'];
?>
開發者ID:CivalCs,項目名稱:ProPHP,代碼行數:31,代碼來源:artigo.php


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