當前位置: 首頁>>代碼示例>>PHP>>正文


PHP INDEX函數代碼示例

本文整理匯總了PHP中INDEX函數的典型用法代碼示例。如果您正苦於以下問題:PHP INDEX函數的具體用法?PHP INDEX怎麽用?PHP INDEX使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了INDEX函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: usersMenus

$user = new usersMenus();
if ($user->AllowEditOuSecurity == false) {
    header('location:users.index.php');
}
if (isset($_GET["ImportArticaDomainsTable"])) {
    ImportArticaDomainsTable();
}
if (isset($_GET["DeleteGlobalBlack"])) {
    DeleteGlobalBlack();
    exit;
}
if (isset($_GET["add_domain"])) {
    add_domain();
    exit;
}
INDEX();
function INDEX()
{
    $page = CurrentPageName();
    if (isset($_GET["find"])) {
        $table = SearchTable($_GET["find"]);
    } else {
        $table = DomainsTable($_GET["ou"]);
    }
    $html = "\n\t<input type='hidden' id='SearchString' value='{$_GET["find"]}'>\n\t<center>\n\t<table style='width:100%'>\n\t<tr>\n\t\t<td>\n\t\t\t<form name='FFMQ'>\n\t\t\t<input type='hidden' name='ImportArticaDomainsTable' value='{$_GET["ou"]}'>\n\t\t\t<input type='button' value='&laquo;&nbsp;{import_black_domain_table}&nbsp;&raquo;' OnClick=\"javascript:MyHref('{$page}?ou={$_GET["ou"]}&ImportArticaDomainsTable={$_GET["ou"]}');\">\n\t\t\t</form>\n\t\t</td>\n\t\t<td>\n\t\t\n\t\t<table>\n\t\t\t<tr>\n\t\t\t<td align='right' nowrap><strong>{add_b_dom}:</strong></td>\n\t\t\t<input type='hidden' value='{$_GET["ou"]}' id='ou' name='ou' >\n\t\t\t<td>" . Field_text('add_domain', null, null, null, null, null, null, "BTAddBlackDomain(event);") . "</td>\n\t\t\t<td><input type='button' value='{add}&nbsp;&raquo;' OnClick=\"javascript:AddBlackDomain();\"></td>\n\t\t\t</tr>\n\t\t</table>\n\t\t\n\t\t</td>\n\t\t\n\t\t\n\t</tr>\n\t<div style='margin:5px'>\n\t<form name='FFMQ1'>\n\t<input type='hidden' name='ou' id='ou' value='{$_GET["ou"]}'>\n\t<table style='width:100%'>\n\t<tr>\n\t<td align='right'><strong>{search}</strong></td>\n\t<td>" . Field_text('find', $_GET["find"]) . "</td>\n\t<td><input type='submit' value='&laquo;&nbsp;{search}&nbsp;&raquo;'></td>\n\t</tr>\n\t</table>\n\t</form>\n\t{$table}\n\t\n\t\n\t";
    $cfg["JS"][] = "js/quarantine.ou.js";
    $tpl = new template_users('{global_blacklist}', $html, 0, 0, 0, 0, $cfg);
    echo $tpl->web_page;
}
function DomainsTable($ou)
{
開發者ID:brucewu16899,項目名稱:artica,代碼行數:31,代碼來源:global-blacklist.ou.php

示例2: DeleteHeaderRule

function DeleteHeaderRule(){
$ldap=new clladp();
	$tpl=new templates();
	$hash=$ldap->UserDatas($_SESSION["uid"]);
	$num=$_GET["DeleteHeaderRule"];
	$pattern=$hash["RegexRules"][$num];
	writelogs("Delete pattern $pattern/$num",__FUNCTION__,__FILE__);
	$hash["RegexRules"][$num]=null;

if(is_array($hash["RegexRules"])){
		while (list ($num, $ligne) = each ($hash["RegexRules"]) ){
			if(preg_match('#<header>(.+?)</header><pattern>(.+?)</pattern><regex>(.+?)</regex><action>(.+?)</action>#',$ligne)){
				$upd["ArticaUserFilterRule"][]=$ligne;
			}
			}
	}else{
		writelogs("Delete pattern set to default",__FUNCTION__,__FILE__);
		$upd["ArticaUserFilterRule"][]='DEFAULT';}
	
if(count($upd["ArticaUserFilterRule"])==0){$upd["ArticaUserFilterRule"][]='DEFAULT';}

	if(!$ldap->Ldap_modify($hash["dn"],$upd)){echo $ldap->ldap_last_error;}else{INDEX();}
}
開發者ID:brucewu16899,項目名稱:1.6.x,代碼行數:23,代碼來源:user.content.rules.php


注:本文中的INDEX函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。