Use PHP functions in JavaScript

JavaScript method_exists

Checks if the class method exists

1
2
3
4
56
7
8
9
1011
12
13
14
1516
17
18
19
20
function method_exists (obj, method) {
    // Checks if the class method exists  
    // 
    // version: 1109.2015
    // discuss at: http://phpjs.org/functions/method_exists    // +   original by: Brett Zamir (http://brett-zamir.me)
    // *     example 1: function class_a() {this.meth1 = function () {return true;}};
    // *     example 1: var instance_a = new class_a();
    // *     example 1: method_exists(instance_a, 'meth1');
    // *     returns 1: true    // *     example 2: function class_a() {this.meth1 = function () {return true;}};
    // *     example 2: var instance_a = new class_a();
    // *     example 2: method_exists(instance_a, 'meth2');
    // *     returns 2: false
    if (typeof obj === 'string') {        return this.window[obj] && typeof this.window[obj][method] === 'function';
    }
 
    return typeof obj[method] === 'function';
}
external links: original PHP docs | raw js source

Examples

» Example 1

Running

1
2
3
function class_a() {this.meth1 = function () {return true;}};
var instance_a = new class_a();
method_exists(instance_a, 'meth1');

Should return

1
true

» Example 2

Running

1
2
3
function class_a() {this.meth1 = function () {return true;}};
var instance_a = new class_a();
method_exists(instance_a, 'meth2');

Should return

1
false

Dependencies

No dependencies, you can use this function standalone.

Open syntax issues

php.js uses JsLint to help us keep our code consistent and prevent some common bugs.

Eventually we want all code to pass or at least take into consideration most fixes suggested by JsLint, following this JsLint configuration we’ve decided on.


Authors

Thanks to the following developers, you get to have method_exists goodness in JavaScript.

Comments

Add Comment
Use:
[CODE]
your_stuff('here');
[/CODE]
for proper code formatting
By submitting code here you are allowing us to use it in php.js hence dual licensing it under the MIT and GPL licenses

No comments yet. Be the first!


Contribute a New function

More functions

In this category

class_alias
class_exists
get_class
get_class_methods
get_class_vars
get_declared_classes
get_object_vars
» method_exists
property_exists

Support us

spread the word:


Use any PHP function in JavaScript


These kind folks have already donated: AYHAN BARI*, Nikita Ekshiyan, Nikita Ekshiyan, Petr Pavel, @HalfWinter, Paulo Freitas, Andros Peña Romo, @andorosu, Raimund Szabo, Nitin Gupta, @nikosdion, Anonymous, Anonymous and Shawn Houser.
<your name here>

Click here to lend your support to: phpjs and make a donation at www.pledgie.com !