• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • apd_continue()

    (PECL apd >= 0.2)

    Restarts the interpreter

    说明

    apd_continue(int $debug_level): bool

    Usually sent via the socket to restart the interpreter.

    参数

    $debug_level

    由加上XXX_TRACE常量而形成的整数。

    不建议使用MEMORY_TRACE。这会很慢且似乎不精确。ASSIGNMENT_TRACE还未被实现。

    要打开所有跟踪功能(TIMING, FUNCTIONS, ARGS SUMMARY(比如 strace -c))则使用 99 作为值。

    返回值

    成功时返回TRUE,或者在失败时返回FALSE

    范例

    Example #1 apd_continue() example

    <?php
    apd_continue(0);
    ?>
    

    上篇:apd_clunk()

    下篇:apd_croak()