本文整理汇总了PHP中Thread::available方法的典型用法代码示例。如果您正苦于以下问题:PHP Thread::available方法的具体用法?PHP Thread::available怎么用?PHP Thread::available使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Thread
的用法示例。
在下文中一共展示了Thread::available方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: explode
$Scan->reset_debugging(false);
// change scan type?
// $Scan->reset_scan_method ("pear");
// set ping statuses
$statuses = explode(";", $Scan->settings->pingStatus);
// set mail override flag
$send_mail = true;
// response for mailing
$address_change = array();
// Array with differences, can be used to email to admins
// script can only be run from cli
if (php_sapi_name() != "cli") {
die("This script can only be run from cli!");
}
// test to see if threading is available
if (!Thread::available()) {
die("Threading is required for scanning subnets. Please recompile PHP with pcntl extension");
}
// verify ping path
if ($Scan->icmp_type == "ping") {
if (!file_exists($Scan->settings->scanPingPath)) {
die("Invalid ping path!");
}
}
// verify fping path
if ($Scan->icmp_type == "fping") {
if (!file_exists($Scan->settings->scanFPingPath)) {
die("Invalid fping path!");
}
}
//first fetch all subnets to be scanned
示例2: validate_threading
/**
* Validates threading support
*
* @access private
* @return void
*/
private function validate_threading()
{
// only for threaded
if ($this->config->nonthreaded !== true) {
if (!Thread::available()) {
$this->throw_exception("Threading is required for scanning subnets. Please recompile PHP with pcntl extension");
}
}
}