本文整理汇总了PHP中DbConnect::MySqlConnecton方法的典型用法代码示例。如果您正苦于以下问题:PHP DbConnect::MySqlConnecton方法的具体用法?PHP DbConnect::MySqlConnecton怎么用?PHP DbConnect::MySqlConnecton使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DbConnect
的用法示例。
在下文中一共展示了DbConnect::MySqlConnecton方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: error_reporting
<?php
/*
* @ author: Alexandr Kozyr;
* @ email: kozyr1av@gmail.com;
* this file aggregates all moves for parsing and saving data to db
*/
if (isset($argv[0])) {
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 'On');
ini_set('max_execution_time', '3600');
require_once 'class/DbConnect.class.php';
require_once 'class/Parser.class.php';
$test = new Parser(DbConnect::MySqlConnecton($config));
$test->process();
} else {
die('Script should start with shell');
}
示例2: header
<?php
/*
* @ author: Alexandr Kozyr;
* @ email: kozyr1av@gmail.com;
* this file aggregates all moves for parsing and saving data to db
*/
header('Content-Type:aplication/json');
require_once 'class/DbConnect.class.php';
require_once 'class/Information.class.php';
$test = new Information(DbConnect::MySqlConnecton($config));
echo $test->GetInformation();