⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deadend.php

📁 一款基于PHP的网络日记程序。WikyBlog支持:多用户的 BLOG
💻 PHP
字号:
<?phpdefined('WikyBlog') or die("Not an entry point...");global $pageOwner,$dbObject,$lang;$page->displayTitle = $lang['dead_end'];$dbObject->links['?'] = $lang['dead_end'];includeFile('search/all.php');	class deadEndFiles extends query{	var $tempObject;		function deadEndFiles(){		global $page,$dbInfo,$pageOwner,$lang,$wbTables;		$page->css2 =true;		$this->rowLimit = 50;		$this->searchUrl = '/Special/'.$pageOwner['username'].'/DeadEnd';				//		//	New		//		$this->allSelect = array();		$this->joinAllTo = $wbTables['all_files'];				$this->selectFrom = $wbTables['all_files'].' LEFT JOIN '.$wbTables['all_links'].'  USING(`file_id`) ';				$this->queryAllFiles();		$this->query .= ' AND !FIND_IN_SET("hidden", '.$wbTables['all_files'].'.`flags`) ';		$this->query .= ' AND !FIND_IN_SET("deleted", '.$wbTables['all_files'].'.`flags`) ';		$this->query .= ' AND `owner_id` = "'.wbDB::escape($pageOwner['user_id']).'" ';		$this->query .= ' AND '.$wbTables['all_links'].'.`file_id` IS NULL ';				//message($this->query);		browseSearch3($this,$lang['dead_end']);	}		function abbrevOutput(&$row,$i){		$this->queryAllResult($row);				echo '<li>';		echo wbLinks::local($row['uniqLink'],toDisplay($row['dTitle']));		echo '</li>';	}		function displayPre(){		echo '<ol>';	}	function displayEmpty(){		parent::displayEmpty();		return true;	}	}new deadEndFiles();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -