apd_continue

(PECL apd >= 0.2)

apd_continueRestarts 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);
?>