PHP7.27: object

 http://www.devshed.com/c/a/PHP/PHP-Services-Layers-Data-Mappers/

https://stackoverflow.com/questions/1980015/model-mapper-relationship

http://assets.en.oreilly.com/1/event/36/PHP%20Object-Relational%20Mapping%20Libraries%20In%20Action%20Presentation.pdf

https://github.com/marcelgsantos/learning-oop-in-php

https://github.com/domnikl/DesignPatternsPHP/tree/master/Structural/DataMapper

https://www.sitepoint.com/handling-collections-of-aggregate-roots/

https://www.sitepoint.com/integrating-the-data-mappers/

https://github.com/TwisterMW/php-dal-model

http://www.phpdao.com/

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">       
<meta charset="utf-8">
<title>object 对象</title>
<meta name="keywords" content="geovindu">
<meta name="description" content="涂聚文">      
</head>
 
<body>
     
<?php
 
// object
class User
{
    public $username,$password;
     
    function getName()
    {
        return $this->username;
    }
     
    function getPassword()
    {
        return $this->password;
         
    }
     
 
     
    function Save()
    {
        echo("保存成功!");
    }
     
}
// UserDesc 继承 User类
class UserDesc extends User
{
    public $realname,$email,$birthday;
     
    function getRealname()
    {
        return $this->realname;
         
    }
     
    function getEmail()
    {
        return $this->email;
    }
     
    function getBirthday()
    {
        return $this->birthday; 
    }
     
}
 
function getMillisecond()
{
    list($s1,$s2) = explode(' ', microtime());
    return (float)sprintf('%.0f', (floatval($s1)+floatval($s2)) * 1000);
}
     
$object=new User;
print_r($object);echo("<br/>");
 
$object->username="geovindu"; //
$object->password="888888";// 赋值
print_r($object);echo("<br/>");
$object->Save()  ;//显示文字
echo("姓名:".$object->getName());  //显示对象的name值
echo("密码:".$object->getPassword());
$object2=new UserDesc;
$object2->birthday=date('Y-m-d H:i:s');
$object2->email='geovindu@163.com';
$object2->realname='涂聚文';
$object2->username='geovindu';
$object2->password='8888';
 
print_r($object2);echo("<br/>");
 
//
class Collection implements ArrayAccess,IteratorAggregate
{
    public $objectArray = Array();
    //**these are the required iterator functions   
    function offsetExists($offset)
    {         
        if(isset($this->objectArray[$offset]))  return TRUE;
        else return FALSE;         
    }   
     
    function & offsetGet($offset)
    {  
        if ($this->offsetExists($offset))  return $this->objectArray[$offset];
        else return (false);
    }
     
    function offsetSet($offset, $value)
    {         
        if ($offset$this->objectArray[$offset] = $value;
        else  $this->objectArray[] = $value;
    }
     
    function offsetUnset($offset)
    {
        unset ($this->objectArray[$offset]);
    }
     
    function & getIterator()
    {
        return new ArrayIterator($this->objectArray);
    }
    //**end required iterator functions
 
    public function doSomething()
    {
        echo "I'm doing something";
    }
}
 
// 
class CustomContact
{
    protected $name = NULL;
    protected $tel=null;
 
    public function set_name($name)
    {
        $this->name = $name;
    }
     
    public function get_name()
    {
        return ($this->name);
    }
     
    public function settel($tel)
    {
        $this->tel=$tel;
    }
     
    public function gettel()
    {
        return ($this->tel);
    }
}  
 
//
$bob = new Collection();
$bob->doSomething();
$du[]=new CustomContact();
$du[5]=new CustomContact();
$du[0]->set_name("geovindu");
$du[0]->settel("13824350518");
$du[5]->set_name("sibodu");
$du[5]->settel("075582397507");
echo("<br/>");
$num=1;
foreach ($du as $aContact)
{
     
     echo("序号:".$num."<br/>");
     echo("姓名:".$aContact->get_name() . "\r\n<br/>");
     echo("电话:".$aContact->gettel() . "\r\n<br/>");
    $num=$num+1;
}
     
$arry =new ArrayObject($du);
print_r($arry);
// 显示
foreach($arry as $obj)
{
        echo "姓名:" . $obj->get_name();
        echo "电话:". $obj->gettel();
}
     
     
?>
     
</body>
</html>

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">       
<meta charset="utf-8">
<title>接口Creating a Data Abstraction Layer in PHP</title>
<meta name="keywords" content="geovindu">
<meta name="description" content="涂聚文">  
<meta name="author" content="涂聚文">       
</head>
 
<body>
<?php
//https://github.com/ADOdb/ADOdb
//https://github.com/AdamB7586/pdo-dbal
//https://github.com/daijulong/generator
     
     
interface Maxmin{
    public function getMax();
     
    public function getMin();
     
}
 
class msm implements Maxmin{
    private $aa=33;
    private $bb=66;
    //具体实现接口声明的方法
    public function getMax()
    {
        return $this->bb;
    }
     
    public function getMin()
    {
        return $this->aa;
    }
     
    public function getOther(){
        return 'geovindu:hi,how are you.';
    }
}  
 
$msm=new msm();
echo($msm->getMax());
echo("<br/>");
echo($msm->getMin());
echo("<br/>");
echo($msm->getOther());
     
?>
</body>
</html>

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">       
<meta charset="utf-8">
<title>多态性</title>
<meta name="keywords" content="geovindu">
<meta name="description" content="涂聚文">  
<meta name="author" content="涂聚文">       
</head>
 
<body>
<?php
//定义蔬菜抽象类
abstract class Vegetables{
    //抽象方法
    abstract function go_Vegetables();
}  
     
//马铃薯继承蔬菜类
class Vegetables_potato extends Vegetables{
    //重写抽象方法
    public function go_Vegetables(){
        echo("我是马铃薯");
    }
}
//萝卜继承蔬菜类
class Vegetables_radish extends Vegetables{
    public function go_Vegetables()
    {
        echo("我是萝卜");
    }
}  
//自定义方法根据对象调用不同的方法
function change($obj)
{
     
    if($obj instanceof Vegetables)
    {
        $obj->go_Vegetables();
    }
    else
    {
        echo("输入的参数不是一个对象");
    }
}
     
try
{  
echo("实例化Vegetables_potato:");
change(new Vegetables_potato());
echo("<br/>");
echo("<br/>");
echo("实例化Vegetables_radish:"); 
change(new Vegetables_radish());
}
catch(Exception $ex)
{
    echo("异常信息:".$ex->getMessage());
}  
?>
</body>
</html>

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">       
<meta charset="utf-8">
<title>通过接口实现多态</title>
<meta name="keywords" content="geovindu">
<meta name="description" content="涂聚文">  
<meta name="author" content="涂聚文">       
</head>
 
<body>
<?php
//定义接口
interface Vegetables{
    //定义接口方法
    public function go_Vegetables();
}  
     
//马铃薯继承蔬菜类
class Vegetables_potato implements Vegetables{
    //重写抽象方法
    public function go_Vegetables(){
        echo("我是马铃薯");
    }
}
//萝卜继承蔬菜类
class Vegetables_radish implements Vegetables{
    public function go_Vegetables()
    {
        echo("我是萝卜");
    }
}  
//自定义方法根据对象调用不同的方法
function change($obj)
{
     
    if($obj instanceof Vegetables)
    {
        $obj->go_Vegetables();
    }
    else
    {
        echo("输入的参数不是一个对象");
    }
}
 
try
{
echo("实例化Vegetables_potato:");
change(new Vegetables_potato());
echo("<br/>");
echo("<br/>");
echo("实例化Vegetables_radish:"); 
change(new Vegetables_radish());
}
catch(Exception $ex)
{
    echo("异常信息:".$ex->getMessage());
}
?>  
</body>
</html>

  

posted @   ®Geovin Du Dream Park™  阅读(340)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!
历史上的今天:
2013-08-13 jQuery Custom PopUp Window
2009-08-13 浮动的客户联系样式QQ模块层兼容各浏览器
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示