本文整理汇总了PHP中Domain::setModSecConf方法的典型用法代码示例。如果您正苦于以下问题:PHP Domain::setModSecConf方法的具体用法?PHP Domain::setModSecConf怎么用?PHP Domain::setModSecConf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Domain
的用法示例。
在下文中一共展示了Domain::setModSecConf方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: domain_insert
function domain_insert($post, $db)
{
$new_domain = new Domain();
$new_domain->setName($post['dname']);
$new_domain->setServerName($post['sname']);
$new_domain->setServerIP($post['sip']);
$new_domain->setServerPort($post['sport']);
$new_domain->setServerAdmin($post['sadmin']);
$new_domain->setAlias($post['salias']);
$new_domain->setOther($post['other']);
$new_domain->setModSecConf($post['mod_sec_conf']);
$new_domain->setActive($post['validity']);
$new_domain->setFilled(true);
$db->addDomain($new_domain);
}
示例2: getAllDomains
public function getAllDomains($where = '')
{
$count_str = "SELECT D.*,C.ConfName from domain D\n LEFT JOIN modsec_conf C ON (C.ConfID=D.ConfID)\n {$where}";
$result = $this->dbh->query($count_str);
if (PEAR::isError($result)) {
echo $result->getMessage() . ' - ' . $result->getUserinfo();
exit;
}
$array = $result->fetchAll();
$result->free();
$domains_a = array();
foreach ($array as $el) {
$domain = new Domain();
$domain->setID($el[0]);
$domain->setName($el[1]);
$domain->setServerName($el[2]);
$domain->setServerIP($el[3]);
$domain->setServerPort($el[4]);
$domain->setServerAdmin($el[5]);
$domain->setAlias($el[6]);
$domain->setOther(stripslashes($el[7]));
$domain->setModSecConf($el[8]);
$domain->setActive($el[9]);
$domain->setModSecConfName($el[12]);
$domain->setFilled(true);
$domains_a[] = $domain;
}
return $domains_a;
}