当前位置: 网学 > 编程文档 > PHP > 正文

php学习笔记之面向对象编程

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/18

网学网为广大网友收集整理了,php学习笔记之面向对象编程,希望对大家有所帮助!

复制代码 代码如下:
<?php
class db {
private $mysqli; //数据库连接
private $options; //SQL选项
private $tableName; //表名
public function __construct($tabName) {
$this->tableName = $tabName;
$this->db ();
}
private function db() {
$this->mysqli = new mysqli ( ''localhost'', ''root'', '''', ''hdcms'' );
$this->mysqli->query("SET NAMES GBK");
}
public function fields($fildsArr) {
if (empty ( $fildsArr )) {
$this->options [''fields''] = '''';
}
if (is_array ( $fildsArr )) {
$this->options [''fields''] = implode ( '','', $fildsArr );
} else {
$this->options [''fields''] = $fildsArr;
}
return $this;
}
public function order($str) {
$this->options [''order''] = "ORDER BY " . $str;
return $this;
}
public function select() {
$sql = "SELECT {$this->options[''fields'']} FROM {$this->tableName} {$this->options[''order'']}";
return $this->query ( $sql );
}
private function query($sql) {
$result = $this->mysqli
->query ( $sql );
$rows = array ();
while ( $row = $result->fetch_assoc () ) {
$rows [] = $row;
}
return $rows;
}
private function close() {
$this->mysqli
->close ();
}
function __destruct() {
$this->close ();
}
}
$chanel = new db ( "hdw_channel" );
$chanelInfo = $chanel->fields ( ''id,cname,cpath'' )
->select ();
echo "<pre>";
print_r ( $chanelInfo );

class a {
protected function aa(){
echo 222;
}
}
class b extends a{
function bb(){
$this->aa();
}
}
$c = new b();
$c->bb();

public 公有的:本类,子类,外部对象都可以调用
protected 受保护的:本类 子类,可以执行,外部对象不可以调用
private 私有的:只能本类执行,子类与外部对象都不可调用

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号