Home > Web Front-end > JS Tutorial > body text

JS+PHP dynamically adds methods to classes

php中世界最好的语言
Release: 2018-05-09 11:23:32
Original
1973 people have browsed it

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()
Copy after login

b. Output:

hello

2. PHP:

a. Code:

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

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!