本文整理汇总了PHP中getPageLock函数的典型用法代码示例。如果您正苦于以下问题:PHP getPageLock函数的具体用法?PHP getPageLock怎么用?PHP getPageLock使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getPageLock函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: output
{
global $report;
if (VERBOSE) {
output($GLOBALS['I18N']->get('(test)') . ' ' . $GLOBALS['I18N']->get('Would have sent') . ' ' . $messageid . $GLOBALS['I18N']->get('to') . ' ' . $email);
} else {
$report .= "\n" . $GLOBALS['I18N']->get('(test)') . ' ' . $GLOBALS['I18N']->get('Would have sent') . ' ' . $messageid . $GLOBALS['I18N']->get('to') . ' ' . $email;
}
}
# we don not want to timeout or abort
$abort = ignore_user_abort(1);
set_time_limit(600);
flush();
output($GLOBALS['I18N']->get('Started'), 0);
# check for other processes running
if (!$send_process_id) {
$send_process_id = getPageLock();
}
if ($ISPrestrictions != "") {
output($ISPrestrictions);
}
if (is_file($ISPlockfile)) {
ProcessError($GLOBALS['I18N']->get('Processing has been suspended by your ISP, please try again later'), 1);
}
if ($num_per_batch > 0) {
if ($safemode) {
output($GLOBALS['I18N']->get('In safe mode, batches are set to a maximum of 100'));
}
if ($original_num_per_batch != $num_per_batch) {
output($GLOBALS['I18N']->get('Sending in batches of') . ' ' . $original_num_per_batch . ' ' . $GLOBALS['I18N']->get('emails'), 0);
$diff = $original_num_per_batch - $num_per_batch;
output($GLOBALS['I18N']->get('This batch will be') . ' ' . $num_per_batch . ' ' . $GLOBALS['I18N']->get('emails, because in the last') . ' ' . $batch_period . ' ' . $GLOBALS['I18N']->get('seconds') . ' ' . $diff . ' ' . $GLOBALS['I18N']->get('emails were sent'), 0);
示例2: main
#############################################
# main
function main()
{
}
if (!function_exists('imap_open')) {
Error($GLOBALS['I18N']->get('IMAP is not included in your PHP installation, cannot continue') . '<br/>' . $GLOBALS['I18N']->get('Check out') . ' <a href="http://www.php.net/manual/en/ref.imap.php">http://www.php.net/manual/en/ref.imap.php</a>');
return;
}
//print '<script language="Javascript" src="js/progressbar.js" type="text/javascript"></script>';
flush();
$outputdone = 0;
# lets not do this unless we do some locking first
register_shutdown_function('processTestEmails_shutdown');
$abort = ignore_user_abort(1);
$process_id = getPageLock();
if (!empty($_REQUEST['email'])) {
$mailToFind = $_REQUEST['email'];
print prepareOutput();
switch ($test_protocol) {
case "pop":
$link = openPop($test_mailbox_host, $test_mailbox_user, $test_mailbox_password);
break;
case "mbox":
$link = openMbox($test_mailbox);
break;
default:
Error($GLOBALS['I18N']->get("test_protocol not supported"));
return;
}
if (isset($link)) {