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


PHP Home::get方法代碼示例

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


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

示例1: get

 function get()
 {
     $profile_uid = intval($_GET['p']) ? intval($_GET['p']) : -1;
     $load = argc() > 1 && argv(1) == 'load' ? 1 : 0;
     header("Content-type: text/html");
     echo "<!DOCTYPE html><html><body>\r\n";
     echo array_key_exists('msie', $_GET) && $_GET['msie'] == 1 ? '<div>' : '<section>';
     $mod = new Home();
     $text = $mod->get($profile_uid, $load);
     $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
     $replace = "<img\${1} dst=\"\${2}\"";
     //        $text = preg_replace($pattern, $replace, $text);
     /*
     		if(! $load) {
     			$replace = '<br />' . t('[Embedded content - reload page to view]') . '<br />';
         	    $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
             	$text = preg_replace($pattern, $replace, $text);
     	        $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
         	    $text = preg_replace($pattern, $replace, $text);
             	$pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i";
     	        $text = preg_replace($pattern, $replace, $text);
         	    $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i";
             	$text = preg_replace($pattern, $replace, $text);
     		}
     */
     echo str_replace("\t", '       ', $text);
     echo array_key_exists('msie', $_GET) && $_GET['msie'] == 1 ? '</div>' : '</section>';
     echo "</body></html>\r\n";
     //	logger('update_home: ' . $text);
     killme();
 }
開發者ID:BlaBlaNet,項目名稱:hubzilla,代碼行數:31,代碼來源:Update_home.php

示例2: OpenHouse

 public function OpenHouse()
 {
     return Home::get()->filter(array('ID' => '5'))->first();
 }
開發者ID:prostart,項目名稱:erics-homes,代碼行數:4,代碼來源:HomePage.php

示例3: Homes

 public function Homes()
 {
     return Home::get();
 }
開發者ID:prostart,項目名稱:erics-homes,代碼行數:4,代碼來源:AvailableHomesPage.php

示例4: getLinks

 public static function getLinks($error = "")
 {
     require_once "models/Home.php";
     $Home = new Home();
     return $Home->get();
 }
開發者ID:siosonel,項目名稱:tatag-api,代碼行數:6,代碼來源:Router.php


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