php

位置:IT落伍者 >> php >> 浏览文章

巧用php类


发布日期:2021年06月20日
 
巧用php类

<?php

class db {

private $db;

const CONS=constroctor start;

const OVER=Class now over;

public function __construct() {

$this>db=mysql;

$this>show(self::CONS);

}

public function getDriver() {

$this>show($this>db);

}

private function show($param) {

echo $param

;

}

public function __destruct() {

$this>show(self::OVER);

}

}

<?php

require dbphp;

$db=new db();

$db>getDriver();

/*

will echo:

constroctor start

mysql

Class now over

*/ 待续

上一篇:php关联数组排序(快速排序)

下一篇:PHP 计算页面执行时间