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


PHP Dao::getComments方法代碼示例

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


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

示例1: foreach

                <input type="radio" name="vote" value="anti" id="anti" /><img class="antilabel" src="images/thumbs_down.png" />
              </label>
              <label class="neutrallabel">
                <input type="radio" name="vote" value="neutral" id="neutral" checked="checked" />?</label>
              <input type="submit" name="commentButton" value="Submit" />
              <input type="hidden" name="form" value="comment" />
              <input type="hidden" name="bill" value="<?php 
    echo $bill["bill_id"];
    ?>
" />
            </form>
          </div>
          
            <div class="pro"><h3>Yea</h3>
              <?php 
    $comments = $dao->getComments($bill["bill_id"], "pro");
    foreach ($comments as $comment) {
        ?>
              <span><?php 
        echo $comment["username"];
        ?>
 says:</span> <?php 
        echo $comment["comment"] . "<br />";
        echo "DATE:" . $comment["date"] . "<br />";
        ?>
 
              <?php 
    }
    ?>
            </div> 
            
開發者ID:paleomedia,項目名稱:idleg_flask,代碼行數:30,代碼來源:index.1.php

示例2: Dao

<div class="comments">
  <h2>Comments</h2>

  <?php 
require_once $_SERVER['DOCUMENT_ROOT'] . "/resources/Dao.php";
require_once $_SERVER['DOCUMENT_ROOT'] . "/resources/User.php";
$dao = new Dao();
$usr = new User();
$comments = $dao->getComments($post_id);
foreach ($comments as $comment) {
    $user = $dao->getUserById($comment["user_id"]);
    echo "<div class='regular p2 bg-light-gray m2 rounded'>";
    echo htmlspecialchars($comment["content"]);
    echo "</div>";
    echo "<div class='bold'>";
    echo htmlspecialchars($usr->user_name($user));
    echo "</div>";
}
?>
</div>
開發者ID:nickbender,項目名稱:metacode,代碼行數:20,代碼來源:comments.php


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