本文整理汇总了PHP中Note::NotesWithId方法的典型用法代码示例。如果您正苦于以下问题:PHP Note::NotesWithId方法的具体用法?PHP Note::NotesWithId怎么用?PHP Note::NotesWithId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Note
的用法示例。
在下文中一共展示了Note::NotesWithId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: if
$req_search_string = $_POST['search_string'];
$display_mode = 'categories';
if(isset($_GET['index'])) {
$display_mode = "titles";
} else if (isset($_GET['all']) || isset($_GET['latest']) || $req_note_id != "" || $req_cat_id != "" || $req_search_string != "") {
$display_mode = "contents";
}
$page_title = $title_faq;
if($display_mode == 'categories') {
$notes = Note::AllNotesIncludingOnesWithoutCategory();
} else if($req_note_id != 0) {
$notes = Note::NotesWithId($req_note_id);
if(count($notes) > 0) {
$n = $notes[0];
$page_title .= " > ".$n->category_name." > ".$n->title;
}
} else if($req_cat_id != 0) {
$c = Category::CategoryWithId($req_cat_id);
$page_title .= " > ".$c->name;
$notes = Note::NotesWithCatId($c->id);
} else if($req_search_string != '') {
$notes = Note::NotesWithSearchString($req_search_string);
} else if (isset($_GET['latest'])) {
$notes = Note::LatestNotes();
} else {
$notes = Note::AllNotesIncludingOnesWithoutCategory();
}
示例2: NoteWithId
public static function NoteWithId($id) {
$notes = Note::NotesWithId($id);
$n = $notes[0];
if($n) return $n;
return Note::NoteWithIdNoCategory($id);
}