本文整理汇总了PHP中C::isLocal方法的典型用法代码示例。如果您正苦于以下问题:PHP C::isLocal方法的具体用法?PHP C::isLocal怎么用?PHP C::isLocal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类C
的用法示例。
在下文中一共展示了C::isLocal方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct($arr = null)
{
C::sessionStart();
//$pageXML = (C::isLocal())?C::getOutsidePath().'aj-db/aj_hfut_page.xml':C::getOutsidePath().'cgi-bin/aj_hfut_page.xml';
$pageXML = C::isLocal() ? 'config/aj_hfut_page.xml' : 'config/aj_hfut_page.xml';
$this->xml = simplexml_load_file($pageXML);
$this->url = C::isLocal() ? $this->xml->config->url['local'] : $this->xml->config->url['server'];
$this->dbc = C::connect();
$this->arr = isset($arr) ? $arr : null;
$this->table = "aj_tumu_users";
}
示例2: insertIntoSQL
public function insertIntoSQL($name, $content)
{
global $config;
$table = C::isLocal() ? $config['message']['local_table'] : $config['message']['table'];
$query = sprintf("INSERT INTO %s (message_name,message_content)VALUES\n\t\t\t\t\t\t('%s','%s')", $table, $name, $content);
if (C::query($query, $this->dbc)) {
return array('isok' => '1', 'info' => '');
} else {
return array('isok' => '0', 'info' => $table . '--' . $query . '--' . mysql_error($this->dbc), 'info2' => $this->dbc);
}
}