本文整理匯總了PHP中eZExecution::cleanexit方法的典型用法代碼示例。如果您正苦於以下問題:PHP eZExecution::cleanexit方法的具體用法?PHP eZExecution::cleanexit怎麽用?PHP eZExecution::cleanexit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eZExecution
的用法示例。
在下文中一共展示了eZExecution::cleanexit方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: header
header('Location: ' . str_replace('?' . $_SERVER['QUERY_STRING'], '', $_SERVER['REQUEST_URI']));
eZExecution::cleanexit();
}
if (!empty($_GET['RECHECK'])) {
if (function_exists(CACHEPREFIX . 'invalidate')) {
$recheck = trim($_GET['RECHECK']);
$files = call_user_func(CACHEPREFIX . 'get_status');
if (!empty($files['scripts'])) {
foreach ($files['scripts'] as $file => $value) {
if ($recheck === '1' || strpos($file, $recheck) === 0) {
call_user_func(CACHEPREFIX . 'invalidate', $file);
}
}
}
header('Location: ' . str_replace('?' . $_SERVER['QUERY_STRING'], '', $_SERVER['REQUEST_URI']));
eZExecution::cleanexit();
} else {
echo 'Sorry, this feature requires Zend Opcache newer than April 8th 2013';
return;
}
}
echo "x!";
?>
<!DOCTYPE html>
<html>
<head>
<title>OCP - Opcache Control Panel</title>
<meta name="ROBOTS" content="NOINDEX,NOFOLLOW,NOARCHIVE" />
<!--[if lt IE 9]><script type="text/javascript" defer="defer">
window.onload=function(){var i,t=document.getElementsByTagName('table');for(i=0;i<t.length;i++){if(t[i].parentNode.className=='graph')t[i].style.height=150-(t[i].clientHeight-150)+'px';}}