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

2019-09-17 10:02:27来源:爱站网 阅读 ()

新老客户大回馈,云服务器低至5折

面向对象是比面向过程编辑更强的计算机编程架构,面向对象主要的是面向的高级特性,我们可以利用这些高级特性写出完美的代码,今天小编就为大家分享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 私有的:只能本类执行,子类与外部对象都不可调用

以上就是php面向对象编程的学习笔记,要想在编程路上走得比别人远,就一定要掌握面向对象编程技术,欢迎您收藏本站,我们将为您提供最新的面向对象编程资源。


原文链接:https://js.aizhan.com/develop/php/8879.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:PHP编写和读取XML的方式有哪些

下一篇:详解php中二维数组排序问题的处理方法