本文整理汇总了PHP中spError函数的典型用法代码示例。如果您正苦于以下问题:PHP spError函数的具体用法?PHP spError怎么用?PHP spError使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了spError函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* 构造函数
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (!function_exists('sqlite_open')) {
spError('PHP环境未安装Sqlite函数库!');
}
$linkfunction = TRUE == $dbConfig['persistent'] ? 'sqlite_popen' : 'sqlite_open';
if (!($this->conn = $linkfunction($dbConfig['host'], 0666, $sqliteerror))) {
spError('数据库链接错误/无法找到数据库 : ' . $sqliteerror);
}
}
开发者ID:daolei,项目名称:grw,代码行数:14,代码来源:sqlite.php
示例2: __construct
/**
* 构造函数
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (TRUE == SP_DEBUG) {
sae_set_display_errors(TRUE);
}
$this->conn = new SaeMysql();
if ($this->conn->errno()) {
spError("数据库链接错误 : " . $this->conn->error());
}
$this->conn->setCharset("UTF8");
}
开发者ID:daolei,项目名称:grw,代码行数:15,代码来源:sae.php
示例3: display
/**
* 显示模板
* @param tplname 模板名称
*/
public function display($tplname)
{
if (file_exists(realpath($this->template_dir) . '/' . $tplname)) {
$tplpath = realpath($this->template_dir) . '/' . $tplname;
} elseif (file_exists($tplname)) {
$tplpath = $tplname;
} else {
spError("speedy引擎:无法找到模板 " . $tplname);
}
extract($this->_vars);
if (TRUE == $this->enable_gzip) {
global $__speedy_compression_level;
$__speedy_compression_level = $this->compression_level;
ob_start('speedy_ob_gzip');
}
include $tplpath;
}
开发者ID:eon-hong,项目名称:anypay,代码行数:21,代码来源:speedy.php
示例4: __construct
/**
* 构造函数
*
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (!function_exists('oci_connect')) {
spError('PHP环境未安装ORACLE函数库!');
}
$linkfunction = TRUE == $dbConfig['persistent'] ? 'oci_pconnect' : 'oci_connect';
if (!($this->conn = $linkfunction($dbConfig['login'], $dbConfig['password'], $dbConfig['host'], 'AL32UTF8'))) {
$e = oci_error();
spError('数据库链接错误 : ' . strip_tags($e['message']));
}
}
开发者ID:eon-hong,项目名称:anypay,代码行数:16,代码来源:oracle.php
示例5: __construct
public function __construct()
{
if (!function_exists('xcache_set')) {
spError('PHP环境未安装Xcache函数库!');
}
}
开发者ID:wjgjb1109,项目名称:huicms,代码行数:6,代码来源:spAccessCache.php
示例6: define
/**
* spCore
*
* SpeedPHP应用框架的系统执行程序
*/
// 定义系统路径
if (!defined('SP_PATH')) {
define('SP_PATH', dirname(__FILE__) . '/SpeedPHP');
}
if (!defined('APP_PATH')) {
define('APP_PATH', dirname(__FILE__) . '/app');
}
// 载入核心函数库
require SP_PATH . "/spFunctions.php";
if (substr(PHP_VERSION, 0, 1) != '5') {
spError("SpeedPHP框架环境要求PHP5!");
}
// 载入配置文件
$GLOBALS['G_SP'] = spConfigReady(require SP_PATH . "/spConfig.php", $spConfig);
// 根据配置文件进行一些全局变量的定义
if ('debug' == $GLOBALS['G_SP']['mode']) {
define("SP_DEBUG", TRUE);
// 当前正在调试模式下
} else {
define("SP_DEBUG", FALSE);
// 当前正在部署模式下
}
// 如果是调试模式,打开警告输出
if (SP_DEBUG) {
if (substr(PHP_VERSION, 0, 3) == "5.3") {
error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING & ~E_DEPRECATED);
开发者ID:BGCX261,项目名称:zhima-svn-to-git,代码行数:31,代码来源:SpeedPHP.php
示例7: __construct
/**
* 构造函数
*
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (!function_exists('mssql_connect')) {
spError('PHP环境未安装MSSQL函数库!');
}
$linkfunction = TRUE == $dbConfig['persistent'] ? 'mssql_pconnect' : 'mssql_connect';
$this->conn = $linkfunction($dbConfig['host'], $dbConfig['login'], $dbConfig['password']) or spError("数据库链接错误 : " . mssql_get_last_message());
mssql_select_db($dbConfig['database'], $this->conn) or spError("无法找到数据库,请确认数据库名称正确!");
}
开发者ID:wateronface,项目名称:php,代码行数:14,代码来源:mssql.php
示例8: define
/**
* spCore
*
* SpeedPHP应用框架的系统执行程序
*/
// 定义系统路径
if (!defined('SP_PATH')) {
define('SP_PATH', dirname(__FILE__));
}
if (!defined('APP_PATH')) {
define('APP_PATH', dirname(dirname(__FILE__)));
}
// 载入核心函数库
require SP_PATH . '/spFunctions.php';
if (substr(PHP_VERSION, 0, 1) != '5') {
spError('SpeedPHP框架环境要求PHP5!');
}
// 载入配置文件
$GLOBALS['G_SP'] = spConfigReady(require SP_PATH . '/spConfig.php', $spConfig);
// 设置错误处理函数
//set_error_handler('spErrorHandler');
@set_magic_quotes_runtime(0);
// 载入核心MVC架构文件
import($GLOBALS['G_SP']['sp_core_path'] . '/spController.php', FALSE, TRUE);
import($GLOBALS['G_SP']['sp_core_path'] . '/spModel.php', FALSE, TRUE);
import($GLOBALS['G_SP']['sp_core_path'] . '/spView.php', FALSE, TRUE);
// 当在二级目录中使用SpeedPHP框架时,自动获取当前访问的文件名
if ('' == $GLOBALS['G_SP']['url']['url_path_base']) {
if (basename($_SERVER['SCRIPT_NAME']) === basename($_SERVER['SCRIPT_FILENAME'])) {
$GLOBALS['G_SP']['url']['url_path_base'] = $_SERVER['SCRIPT_NAME'];
} elseif (basename($_SERVER['PHP_SELF']) === basename($_SERVER['SCRIPT_FILENAME'])) {
开发者ID:eon-hong,项目名称:anypay,代码行数:31,代码来源:SpeedPHP.php
示例9: error
function error($message, $tplname)
{
spError($message . $tplname);
}
开发者ID:httvncoder,项目名称:151722441,代码行数:4,代码来源:Template.php
示例10: spErrorHandler
/**
* spErrorHandler 系统错误提示函数
* @param errno 出错类型
* @param errstr 错误信息
* @param errfile 出错的文件
* @param errline 出错语句行号
*/
function spErrorHandler($errno, $errstr, $errfile, $errline)
{
if (E_ERROR == $errno || E_PARSE == $errno) {
spError($errstr);
}
}
开发者ID:eon-hong,项目名称:anypay,代码行数:13,代码来源:spFunctions.php
示例11: __construct
/**
* 构造函数
*
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
$linkfunction = TRUE == $dbConfig['persistent'] ? 'mysql_pconnect' : 'mysql_connect';
$this->conn = $linkfunction($dbConfig['host'] . ":" . $dbConfig['port'], $dbConfig['login'], $dbConfig['password']) or spError("数据库链接错误 : " . mysql_error());
mysql_select_db($dbConfig['database'], $this->conn) or spError("无法找到数据库,请确认数据库名称正确!");
$this->exec("SET NAMES UTF8");
}
开发者ID:wjgjb1109,项目名称:huicms,代码行数:12,代码来源:mysql.php
示例12: getTableInfo
private function getTableInfo($table)
{
mysql_select_db($this->database, $this->conn) or spError("无法链接数据库或者没有" . $this->database . "数据库访问权限。");
$sql = "select * from `{$this->database}`.`{$table}` WHERE 1";
$rs = $this->getArray($sql);
//获取crate sql
if (is_array($rs)) {
$filed = $val = '';
//处理字段
foreach ($rs[0] as $k => $v) {
$filed .= '`' . $k . '` ,';
}
$filed = substr($filed, 0, -1);
//去掉多余的逗号
foreach ($rs as $d) {
$vas = '';
foreach ($d as $va) {
if (is_numeric($va)) {
$vas .= $va . ',';
} else {
$vas .= "'" . addslashes($va) . "',";
}
}
$vas = substr($vas, 0, -1);
$val .= '(' . $vas . "),{$this->ln}";
}
$sql = "{$this->ln}{$this->ln}INSERT INTO `{$table}` ";
$sql .= "( {$filed} ) VALUES {$this->ln} {$val}";
$sql = substr($sql, 0, -2) . ';';
return $sql . $this->ln . $this->ln;
} else {
return $this->ln . $this->ln;
}
}
开发者ID:httvncoder,项目名称:151722441,代码行数:34,代码来源:dbbackup.php
示例13: __construct
/**
* 构造函数
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (!function_exists('oci_connect')) {
spError('PHP环境未安装ORACLE函数库!');
}
$linkfunction = TRUE == $dbConfig['persistent'] ? 'oci_pconnect' : 'oci_connect';
if (!($this->conn = $linkfunction($dbConfig['login'], $dbConfig['password'], $dbConfig['host'], 'AL32UTF8'))) {
$e = oci_error();
spError('数据库链接错误 : ' . strip_tags($e['message']));
}
$this->exec('ALTER SESSION SET NLS_DATE_FORMAT = \'yyyy-mm-dd hh24:mi:ss\'');
}
开发者ID:ivanberry,项目名称:grw,代码行数:16,代码来源:oracle.php
示例14: forumline
public function forumline($user_id)
{
if ($this->forum_open) {
$num_per_page = 4;
$args = array("page" => 2);
$uc_id = $this->spArgs('ucid');
if ($user_id) {
$conditions['user_id'] = $user_id;
$args['uid'] = $user_id;
if (!$uc_id) {
$ptx_user = spClass("ptx_user");
$user = $ptx_user->getuser_byid($user_id);
$uc_id = $user['uc_id'];
}
}
if (!$uc_id || !is_numeric($uc_id)) {
spError(T('no_bbs_account_bind'));
return;
}
$args['ucid'] = $uc_id;
$conditions['authorid'] = $uc_id;
$next_time = $this->spArgs("next_time");
$this->need_static = false;
if ($next_time) {
$now = $next_time;
} else {
$now = time();
$this->need_static = $this->page == 1 ? true : false;
}
$forum_post = spClass('forum_post');
$conditions['lt_time'] = $now;
$last_post = $forum_post->find_one($conditions, " forum_post.dateline DESC ", " forum_post.pid,forum_post.dateline ");
$last_time = $last_post['dateline'];
$last_post_month = (int) date('m', $last_time);
$last_post_month_days = (int) date('t', $last_time);
$last_post_year = (int) date('Y', $last_time);
$this_month_time_first = time(0, 0, 0, $last_post_month, 1, $last_post_year);
$this_month_time_last = time(24, 59, 59, $last_post_month, $last_post_month_days, $last_post_year);
$conditions['gt_time'] = $this_month_time_first;
$conditions['lt_time'] = $this_month_time_last;
$this_month_last_post = $forum_post->find_one($conditions, " forum_post.dateline DESC ", " forum_post.pid,forum_post.dateline ");
$posts = $forum_post->search($conditions, $this->page, $num_per_page, NULL, " forum_post.dateline DESC ");
if (array_length($posts) == $num_per_page) {
$next_search_time = $posts[$num_per_page - 1]['dateline'];
//$this->resetPage = true;
} else {
$next_search_time = $this_month_time_first;
$this->resetPage = true;
}
if ($this_month_last_post['pid'] == $posts[0]['pid']) {
$this->timeline_date = $last_post_year . '年' . $last_post_month . '月';
}
$forum_attachment = spClass('forum_attachment');
foreach ($posts as $key => $post) {
$posts[$key]['images'] = $forum_attachment->search_attach_images($post['pid']);
$post['message'] = messageclean($post['message']);
$post['message'] = tpl_modifier_bbcode2html($post['message']);
$posts[$key]['message'] = $post['message'];
}
$args['next_time'] = $next_search_time;
$this->nextpage_url = spUrl($this->current_controller, $this->current_action, $args);
$this->forumlineView($posts, 'post');
//$this->set_user_banner($user_id);
$this->output("user/forumline");
}
}
开发者ID:httvncoder,项目名称:151722441,代码行数:66,代码来源:baseuser.php
示例15: __construct
/**
* 构造函数
*
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (!class_exists("PDO")) {
spError('PHP环境未安装PDO函数库!');
}
try {
$this->conn = new PDO($dbConfig['host'], $dbConfig['login'], $dbConfig['password']);
} catch (PDOException $e) {
echo '数据库链接错误/无法找到数据库 : ' . $e->getMessage();
}
}
开发者ID:eon-hong,项目名称:anypay,代码行数:16,代码来源:pdo.php
示例16: spClass
/**
* spClass 类实例化函数 自动载入类定义文件,实例化并返回对象句柄
*
* @param class_name 类名称
* @param args 类初始化时使用的参数,数组形式
* @param sdir 载入类定义文件的路径,可以是目录+文件名的方式,也可以单独是目录。sdir的值将传入import()进行载入
* @param force_inst 是否强制重新实例化对象
*/
function spClass($class_name, $args = null, $sdir = null, $force_inst = FALSE)
{
// 检查类名称是否正确,以保证类定义文件载入的安全性
if (preg_match('/[^a-z0-9\\-_.]/i', $class_name)) {
spError($class_name . "类名称错误,请检查。");
}
// 检查是否该类已经实例化,直接返回已实例对象,避免再次实例化
if (TRUE != $force_inst) {
if (isset($GLOBALS['G_SP']["inst_class"][$class_name])) {
return $GLOBALS['G_SP']["inst_class"][$class_name];
}
}
// 如果$sdir不能读取,则测试是否仅路径
if (null != $sdir && !import($sdir) && !import($sdir . '/' . $class_name . '.php')) {
return FALSE;
}
$has_define = FALSE;
// 检查类定义是否存在
if (class_exists($class_name, false) || interface_exists($class_name, false)) {
$has_define = TRUE;
} else {
if (TRUE == import($class_name . '.php')) {
$has_define = TRUE;
}
}
if (FALSE != $has_define) {
$argString = '';
$comma = '';
if (null != $args) {
for ($i = 0; $i < count($args); $i++) {
$argString .= $comma . "\$args[{$i}]";
$comma = ', ';
}
}
eval("\$GLOBALS['G_SP']['inst_class'][\$class_name]= new \$class_name({$argString});");
return $GLOBALS['G_SP']["inst_class"][$class_name];
}
spError($class_name . "类定义不存在,请检查。");
}
开发者ID:ngsoqia,项目名称:soupian,代码行数:47,代码来源:spFunctions.php
示例17: checkrules
/**
* 按规则验证数据
*
* @param values 验证值
*/
private function checkrules($values)
{
$this->checkvalues = $values;
foreach ($this->verifier["rules"] as $rkey => $rval) {
$inputval = isset($values[$rkey]) ? $values[$rkey] : '';
foreach ($rval as $rule => $rightval) {
if (method_exists($this, $rule)) {
if (TRUE == $this->{$rule}($inputval, $rightval)) {
continue;
}
} elseif (null != $this->add_rules && isset($this->add_rules[$rule])) {
if (function_exists($this->add_rules[$rule])) {
if (TRUE == $this->add_rules[$rule]($inputval, $rightval, $values)) {
continue;
}
} elseif (is_array($this->add_rules[$rule])) {
if (TRUE == spClass($this->add_rules[$rule][0])->{$this->add_rules[$rule][1]}($inputval, $rightval, $values)) {
continue;
}
}
} else {
spError("未知规则!");
}
$this->messages[$rkey][] = isset($this->verifier["messages"][$rkey][$rule]) ? $this->verifier["messages"][$rkey][$rule] : "{$rule}";
}
}
// 返回FALSE则通过验证,返回数组则未能通过验证,返回的是提示信息。
return null == $this->messages ? FALSE : $this->messages;
}
开发者ID:eon-hong,项目名称:anypay,代码行数:34,代码来源:spModel.php
示例18: __construct
/**
* 构造函数
*
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (!function_exists('mysqli_connect')) {
spError('PHP环境未安装MySQLi函数库!');
}
$linkfunction = TRUE == $dbConfig['persistent'] ? 'mysqli_pconnect' : 'mysqli_connect';
$this->conn = $linkfunction($dbConfig['host'], $dbConfig['login'], $dbConfig['password'], $dbConfig['database'], $dbConfig['port']);
if (mysqli_connect_errno()) {
spError('数据库链接错误/无法找到数据库 : ' . mysqli_connect_error());
}
$this->exec("SET NAMES UTF8");
}
开发者ID:wateronface,项目名称:php,代码行数:17,代码来源:mysqli.php
示例19: __call
/**
* 魔术函数,实现对控制器扩展类的自动加载
*/
public function __call($name, $args)
{
if (in_array($name, $GLOBALS['G_SP']["auto_load_controller"])) {
return spClass($name)->__input($args);
} elseif (!method_exists($this, $name)) {
spError("方法 {$name}未定义!<br />请检查是否控制器类(" . get_class($this) . ")与数据模型类重名?");
}
}
开发者ID:BGCX261,项目名称:zhima-svn-to-git,代码行数:11,代码来源:spController.php
示例20: __construct
/**
* 构造函数
*
* @param dbConfig 数据库配置
*/
public function __construct($dbConfig)
{
if (!class_exists("PDO")) {
spError('PHP环境未安装PDO函数库!');
}
try {
$this->conn = new PDO($dbConfig['host'], $dbConfig['login'], $dbConfig['password'], array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
} catch (PDOException $e) {
spError('数据库链接错误/无法找到数据库 : ' . $e->getMessage());
}
}
开发者ID:ngsoqia,项目名称:soupian,代码行数:16,代码来源:pdo.php
注:本文中的spError函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论