Streamer面向对象包装的PHP库

2017-12-18 15:05:4462833查看评论(0)
简介:

var C = (function(){  
    // ------Class Creation------  
    var initializing = false,  
    fnTest = /xyz/.test(function() {  
        xyz;  
    }) ? /\b_super\b/: /.*/;  
    // The base Class implementation (does nothing)  
    this.Class = function() {};  
    // Create a new Class that inherits from this class  
    Class.extend = function(prop) {  
        var _super = this.prototype;  
        // Instantiate a base class (but only create the instance,  
        // don't run the init constructor)  
        initializing = true;  
        var prototype = new this();  
        initializing = false;

该类库主要依赖Simple JavaScript Inheritance ,并对其做了修改。

Streamer面向对象包装的PHP库

申明:本站所有资源都是转载各大下载站,或由网友投稿发布,请自行检测软件的完整性,如有侵权请联系我们删除下架,联系方式:admin@php.cn

相关推荐

Streamer面向对象包装的PHP库

Streamer面向对象包装的PHP库
59033

面向对象流包装PHP库

面向对象流包装PHP库
4273186

面向对象流包装的PHP库

面向对象流包装的PHP库
50340

Streamer-master简单的面向对象包装的php类

Streamer-master简单的面向对象包装的php类
66029

简单的PHP面向对象流包装库

一个简单的面向对象流包装库
50529

php-ssh-master面向对象的SSH包装库

php-ssh-master面向对象的SSH包装库
49233
网页评论
最新评论