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!