亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

javascript與PHP動態(tài)往類中添加方法對比

 更新時間:2018年03月21日 08:52:48   作者:Lee_吉  
這篇文章主要介紹了JAVASCRIPT與PHP動態(tài)往類中添加方法對比的相關(guān)資料,需要的朋友可以參考下

1.JAVASCRIPT:

a. 代碼:

var a = function(){
}
var my_a = new a()
my_a.say = function(){
console.log('hello')
}
my_a.say()

b. 輸出:

hello

2. PHP:

a. 代碼:

<?php
class a{

}
$a = new a();
$a->say = function(){
echo "hello";
};
$say = $a->say;
$say();

b. 輸出:

hello

相關(guān)文章

最新評論