php declare (ticks = N)

A tick is an event that occurs for every N low-level tickable statements executed by the parser within the declare block. The value for N is specified using ticks=N within the declare block's directive section.php

這是PHP中對 declare 中的 ticks 的定義函數

中文翻譯 Tick(時鐘週期)是一個在 declare 代碼段中解釋器每執行 N 條可計時的低級語句就會發生的事件。N 的值是在 declare 中的 directive 部分用ticks=N 來指定的. 測試

我我的理解的大意就是說, tick 這個週期上會綁定一個事件, 這個事件, 當Zend引擎執行到所設置的 tick (就是N) 行低級語句時, 就執行  register_tick_function()  定義的事件 spa

關於什麼是低級語句, http://my.oschina.net/Jacker/blog/32936 這篇文章說的很詳細, 有時間的話, 能夠研究一下的, 涉及到了PHP的底層 zend 引擎..net

declare (ticks = N); 翻譯

這個東西有什麼用?debug

1. 能夠用來調試語句, 根據粗體標明的, 不難看出來, 能夠用來調試語句, 能夠把執行出錯的每一行代碼記錄下來, 能夠看出究竟是哪裏出錯了. 調試

<?php
error_reporting(0);

declare(ticks = 1); 

// $result bool
function debug () {
    $debug = debug_backtrace();
    if ($debug) {
        $functionName = $debug['function'];
        if ( !function_exists($functionName) ) { 
            // file_put_contents('/tmp/declare-debug', 'function is not exists!' . "\n", FILE_APPEND);
            exit("function is not exists!\n");
        }
    }
}

register_tick_function('debug');

atest('bb');

 

2. 能夠控制程序執行時間, walkor  大神寫過, 拿來用一下.  下面是兩個死循環, 可是以下這樣寫, 程序運行時間不會超過5s .
code

<?php
declare(ticks = 1); 

$timeStart = time();

function checkTimeout () {
    global $timeStart;
    $timeoutSeconds = 5;

    if (time() - $timeStart > $timeoutSeconds) {
        exit ('超時' . "\n");
    }   
}

register_tick_function('checkTimeout');

while (1) {
    $num = 1;
}


while (1) {
    $num = 1;
}

3. walkor大神 所寫的第二個是檢測信號的, 拿來用一下.blog

declare(ticks=1);每執行一次低級語句會檢查一次該進程是否有未處理過的信號,測試代碼以下:
運行 php signal.php 
而後CTL+c 或者 kill -SIGINT PID 會致使運行代碼跳出死循環去運行pcntl_signal註冊的函數,效果就是腳本exit打印「Get signal SIGINT and exi」退出

declare(ticks=1);
pcntl_signal(SIGINT, function(){
   exit("Get signal SIGINT and exit\n");
});
echo "Ctl + c or run cmd : kill -SIGINT " . posix_getpid(). "\n" ;
while(1){
  $num = 1;
}
相關文章
相關標籤/搜索