欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

javascript與PHP動(dòng)態(tài)往類(lèi)中添加方法對(duì)比

 更新時(shí)間:2018年03月21日 08:52:48   作者:Lee_吉  
這篇文章主要介紹了JAVASCRIPT與PHP動(dòng)態(tài)往類(lèi)中添加方法對(duì)比的相關(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)文章

最新評(píng)論