本文整理匯總了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);
}
}