Home  >  Article  >  Web Front-end  >  JS+PHP dynamically adds methods to classes

JS+PHP dynamically adds methods to classes

php中世界最好的语言
php中世界最好的语言Original
2018-05-09 11:23:322033browse

This time I will bring you JS PHP to dynamically add methods to classes. What are the precautions for dynamically adding methods to classes using JS PHP? The following is a practical case, let’s take a look.

1.JAVASCRIPT

a. Code:

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

b. Output:

hello

2. PHP:

a. Code:

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

b. Output:

hello

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps to use vuex

##Detailed explanation of url, href, and src knowledge in the front end

The above is the detailed content of JS+PHP dynamically adds methods to classes. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn