You are not logged in.
Login
or
Register
.
JsPHP: a JavaScript library providing the PHP API
Home
Register
Demo
Categories
Functions
Contributors
Download
Links
Comments
FAQ
Contact
View
Edit
Benchmark
Revisions
Developers
Dependencies
Talk
Links
get_class_vars:
Edit: get_class_vars
Function:
get_class_vars
View get_class_vars
Edit get_class_vars
Edit code
Edit tests
Edit benchmark
View latest code
Edit latest code
Benchmark get_class_vars
Comment on get_class_vars
Comment on the latest code
View revisions
View versions
View contributors
View dependencies
View comments
View links
Download production code
Download development code
View the PHP docs
View phpjs.org
View phpjs.org raw code
Description:
Returns an array of default properties of the class.
Edit function
Code
:
function get_class_vars (name) { // http://jsphp.co/jsphp/fn/view/get_class_vars // + original by: Brett Zamir (http://brett-zamir.me) // * example 1: function Myclass(){privMethod = function (){};} // * example 1: Myclass.classMethod = function () {} // * example 1: Myclass.prototype.myfunc1 = function () {return(true);}; // * example 1: Myclass.prototype.myfunc2 = function () {return(true);} // * example 1: get_class_vars('MyClass') // * returns 1: {} var constructor, retArr = {}, prop = ''; if (typeof name === 'function') { constructor = name; } else if (typeof name === 'string') { constructor = this.window[name]; } for (prop in constructor) { if (typeof constructor[prop] !== 'function' && prop !== 'prototype') { retArr[prop] = constructor[prop]; } } // Comment out this block to behave as "class" is usually defined in JavaScript convention if (constructor.prototype) { for (prop in constructor.prototype) { if (typeof constructor.prototype[prop] !== 'function') { retArr[prop] = constructor.prototype[prop]; } } } return retArr; }
You have to be logged in to edit functions.
Edit tests
Code
:
You have to be logged in to edit tests.
Edit benchmark
Code
:
You have to be logged in to edit benchmarks.
[
top
]
Comments
There are no comments yet, be the first!
Please
Login
or
Register
to post comments.