码迷,mamicode.com
首页 > Web开发 > 详细

PHPCMS快速建站系列之需要掌握的函数

时间:2017-01-18 10:41:57      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:ber   添加   斜杠   程序   replace   提示   not   tca   第一个   

路径:phpcms\libs\classes\model.class.php
/**
  * 执行sql查询
  * @param $where   查询条件[例`name`=‘$name‘]
  * @param $data   需要查询的字段值[例`name`,`gender`,`birthday`]
  * @param $limit   返回结果范围[例:10或10,10 默认为空]
  * @param $order   排序方式 [默认按数据库默认方式排序]
  * @param $group   分组方式 [默认为空]
  * @param $key          返回数组按键名排序
  * @return array  查询结果集数组
  */
final public function select($where = ‘‘, $data = ‘*‘, $limit = ‘‘, $order = ‘‘, $group = ‘‘, $key=‘‘)
/**
  * 查询多条数据并分页
  * @param $where
  * @param $order
  * @param $page
  * @param $pagesize
  * @return unknown_type
  */
final public function listinfo($where = ‘‘, $order = ‘‘, $page = 1, $pagesize = 20, $key=‘‘, $setpages = 10,$urlrule = ‘‘,$array = array())
/**
  * 获取单条记录查询
  * @param $where   查询条件
  * @param $data   需要查询的字段值[例`name`,`gender`,`birthday`]
  * @param $order   排序方式 [默认按数据库默认方式排序]
  * @param $group   分组方式 [默认为空]
  * @return array/null 数据查询结果集,如果不存在,则返回空
  */
final public function get_one($where = ‘‘, $data = ‘*‘, $order = ‘‘, $group = ‘‘)
/**
  * 执行添加记录操作
  * @param $data   要增加的数据,参数为数组。数组key为字段值,数组值为数据取值
  * @param $return_insert_id 是否返回新建ID号
  * @param $replace 是否采用 replace into的方式添加数据
  * @return boolean
  */
final public function insert($data, $return_insert_id = false, $replace = false)
/**
  * 执行更新记录操作
  * @param $data   要更新的数据内容,参数可以为数组也可以为字符串,建议数组。
  *       为数组时数组key为字段值,数组值为数据取值
  *       为字符串时[例:`name`=‘phpcms‘,`hits`=`hits`+1]。
  *      为数组时[例: array(‘name‘=>‘phpcms‘,‘password‘=>‘123456‘)]
  *      数组的另一种使用array(‘name‘=>‘+=1‘, ‘base‘=>‘-=1‘);程序会自动解析为`name` = `name` + 1, `base` = `base` - 1
  * @param $where   更新数据时的条件,可为数组或字符串
  * @return boolean
  */
final public function update($data, $where = ‘‘)
/**
  * 执行删除记录操作
  * @param $where   删除数据条件,不充许为空。
  * @return boolean
  */
final public function delete($where)
/**
  * 返回数据结果集
  * @param $query (mysql_query返回值)
  * @return array
  */
final public function fetch_array()

函数:addslashes
定义:addslashes() 函数在指定的预定义字符前添加反斜杠。
如:
<?php
$str = "Who‘s John Adams?";
echo $str . " This is not safe in a database query.<br />";
echo addslashes($str) . " This is safe in a database query.";
?>
则输出为:
Who‘s John Adams? This is not safe in a database query.
Who\‘s John Adams? This is safe in a database query.
函数:var_export()
定义:直接使用var_export()函数就可以打印出字符串,如果函数的第二个参数设置为TRUE,不会直接打印出字符串,而是将值传给一个变量。
template($module = ‘content‘, $template = ‘index‘, $style = ‘‘)
/**
* 提示信息页面跳转,跳转地址如果传入数组,页面会提示多个地址供用户选择,默认跳转地址为数组的第一个值,时间为5秒。
* showmessage(‘登录成功‘, array(‘默认跳转地址‘=>‘http://www.seogoo.com‘));
* @param string $msg 提示信息
* @param mixed(string/array) $url_forward 跳转地址
* @param int $ms 跳转等待时间
*/
function showmessage($msg, $url_forward = ‘goback‘, $ms = 1250, $dialog = ‘‘, $returnjs = ‘‘)
/**
* 加载模板标签缓存
* @param string $name 缓存名
* @param integer $times 缓存时间
*/
function tpl_cache($name,$times = 0)
/**
* 读取缓存,默认为文件缓存,不加载缓存配置。
* @param string $name 缓存名称
* @param $filepath 数据路径(模块名称) caches/cache_$filepath/
* @param string $config 配置名称
*/
function getcache($name, $filepath=‘‘, $type=‘file‘, $config=‘‘)
/**
* 生成sql语句,如果传入$in_cloumn 生成格式为 IN(‘a‘, ‘b‘, ‘c‘)
* @param $data 条件数组或者字符串
* @param $front 连接符
* @param $in_column 字段名称
* @return string
*/
function to_sqls($data, $front = ‘ AND ‘, $in_column = false)
函数:implode() 函数把数组元素组合为一个字符串。
<?php$arr = array(‘Hello‘,‘World!‘,‘Beautiful‘,‘Day!‘);echo implode(" ",$arr);?>
输出:
Hello World! Beautiful Day!
/**
* 获取用户昵称
* 不传入userid取当前用户nickname,如果nickname为空取username
* 传入field,取用户$field字段信息
*/
function get_nickname($userid=‘‘, $field=‘‘)
/**
* 获取用户信息
* 不传入$field返回用户所有信息,
* 传入field,取用户$field字段信息
*/
function get_memberinfo($userid, $field=‘‘)
/**
* 通过 username 值,获取用户所有信息
* 获取用户信息
* 不传入$field返回用户所有信息,
* 传入field,取用户$field字段信息
*/
function get_memberinfo_buyusername($username, $field=‘‘)

/**
* 文件下载
* @param $filepath 文件路径
* @param $filename 文件名称
*/
function file_down($filepath, $filename = ‘‘)

摘自:http://bbs.phpcms.cn/thread-780559-1-1.html

PHPCMS快速建站系列之需要掌握的函数

标签:ber   添加   斜杠   程序   replace   提示   not   tca   第一个   

原文地址:http://www.cnblogs.com/MY0101/p/6295632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!