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


PHP Timer::spent方法代碼示例

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


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

示例1: url_get

    $標題 = trim(strip_tags($html->find('div.tit', 0)));
    $內容 = trim($html->find('div.des', 0));
    $限定 = trim(strip_tags($html->find('div.res', 0)));
    $錦囊1 = trim(strip_tags($html->find('div.helpcont', 0)));
    $錦囊2 = trim(strip_tags($html->find('div.helpcont', 1)));
    $錦囊3 = trim(strip_tags($html->find('div.helpcont', 2)));
    // exit($html->find('div.des',0));
    $sql = "INSERT INTO lanqiao_spider_changwei (lanqiao_href,lanqiao_title,lanqiao_content,lanqiao_limit,lanqiao_help1,lanqiao_help2,lanqiao_help3) VALUES ('{$鏈接}','{$標題}','{$內容}','{$限定}','{$錦囊1}','{$錦囊2}','{$錦囊3}')";
    mysql_query($sql);
    echo mysql_errno() . '-' . mysql_error();
    echo "{$i}<br>";
    // echo $sql."\n";
    $html->clear();
}
$timer->stop();
echo "當前腳本執行時間:" . $timer->spent();
function url_get($url, $POSTcontent = "", $cookie = "")
{
    //這是一個自定義的獲取某個url返回結果的函數
    $ch = curl_init();
    //這一行初始化了一個curl對象
    curl_setopt($ch, CURLOPT_URL, $url);
    //這一行設置了curl對象要請求的url
    if ($POSTcontent != "") {
        curl_setopt($ch, CURLOPT_POSTFIELDS, $POSTcontent);
    }
    //這一行設置了curl要請求的時候附帶上的post數據
    if ($cookie != "") {
        curl_setopt($ch, CURLOPT_COOKIE, $cookie);
    }
    //這一行設置了curl要請求的時候附帶上的cookie數據
開發者ID:cw1997,項目名稱:lanqiao-spider,代碼行數:31,代碼來源:spider.php

示例2: start

<?php
/*
 * 使用微妙計算php腳本的執行時間
 * 
 * */
class Timer {
	private $startTime = 0;
	private $stoptTme = 0;
	function start() {
		$this->startTime = microtime(true);
		}
	function stop(){
		$this->stopTime = microtime(true);
	}	
	
	function spent(){

		return round($this->startTime - $this->startTime,4);
		}
	}
$timer = new Timer();
$timer->start();
usleep(1000);
$timer->stop();

echo "執行該腳本用時<b>".$timer->spent()."</b>秒";



開發者ID:knight-zhou,項目名稱:PHP-HTML,代碼行數:26,代碼來源:time.php

示例3: intval

</p>
				<hr>
			</div>
			<hr>
			<div class="am-u-sm-12 am-article">
				<?php 
echo $rs['lanqiao_content'];
?>
			</div>
			<div class="am-u-sm-10">
			<a href="view.php?id=<?php 
echo intval($_GET['id']) - 1;
?>
">上一題</a>
			</div>
			<div class="am-u-sm-2">
			<a href="view.php?id=<?php 
echo intval($_GET['id']) + 1;
?>
">下一題</a>
		</div>
		</div>
	<hr>
	<footer class="footer">
	  <p>© 2016 <a href="http://www.changwei.me" target="_blank">昌維的博客</a> QQ:867597730 腳本執行時間:<?php 
echo $timer->spent();
?>
 秒 </p>
	</footer>
</body>
</html>
開發者ID:cw1997,項目名稱:lanqiao-spider,代碼行數:31,代碼來源:view.php


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