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


PHP Thread::all方法代碼示例

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


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

示例1: error_reporting

?>
" >
				<button class="wmd-submit" type="submit" ><i class='fa fa-search fa-fw'></i></button>
			</form>
                        
                        
<?php 
//ini_set("display_errors",1);
error_reporting(1);
if (!empty($_GET["search"])) {
    $words = $_GET["search"];
    //メタ文字のescape化
    $words2 = preg_replace_callback("/[\\*\\?\\+\\[\\]\\(\\)\\{\\}\\^\$\\|\\\\.\\/]/", function ($matches) {
        return "\\" . $matches[0];
    }, $words);
    $threads = Thread::all();
    $result_list = array();
    //全スレッド
    for ($j = 0; $j < count($threads); $j++) {
        $Post = $threads[$j]->getAllPosts();
        //全ポスト
        for ($i = 0; $i < count($Post); $i++) {
            //本文の抜出し
            $html = str_get_html($Post[$i]->getContent());
            //本文match?
            if (preg_match("/{$words2}/i", $html->plaintext)) {
                $obj = array("thread_id" => $threads[$j]->getId(), "post_id" => $Post[$i]->getPostId(), "title" => $threads[$j]->getTitle(), "body" => $html->plaintext);
                array_push($result_list, $obj);
            }
        }
    }
開發者ID:plainbanana,項目名稱:eicforum,代碼行數:31,代碼來源:search.php

示例2: foreach

		<table >
			<thead>
				<tr>
					<td>id</td>
					<td>タイトル</td>
					<td>スレのホスト</td>
					<td>Guest</td>
					<td>野田</td>
					<td>葛飾</td>
					<td>削除</td>
				</tr>
			</thead>
			<tbody>

			 	<?php 
foreach (Thread::all() as $thread) {
    ?>
				<tr>
					<td><?php 
    echo $thread->getId();
    ?>
</td>
					<td> <?php 
    echo $thread->getTitle();
    ?>
 </td>
					<td> <?php 
    echo $thread->getHost()->getNickname();
    ?>
</td>
					<?php 
開發者ID:plainbanana,項目名稱:eicforum,代碼行數:31,代碼來源:permission.php

示例3: home

 public function home()
 {
     $threads = Thread::all();
     require_once ROOT . DS . 'application' . DS . 'view' . DS . 'home.php';
 }
開發者ID:rahmanadianto,項目名稱:IF3110-2015-T1,代碼行數:5,代碼來源:class.threadcontroller.php

示例4: threadList

 public static function threadList()
 {
     $threads = Thread::all();
     View::make('thread/thread_list.html', array('threads' => $threads));
 }
開發者ID:CarnivoreBarnacle,項目名稱:Forum,代碼行數:5,代碼來源:thread_controller.php


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