Marker::__construct PHP Method

__construct() public method

public __construct ( $x, $y, $k, $v, $extra )
    public function __construct($x, $y, $k, $v, $extra)
    {
        $this->x = $x;
        $this->y = $y;
        $this->key = $k;
        $this->value = $v;
        $this->extra = $extra;
    }

Usage Example

示例#1
0
 function __construct($test)
 {
     parent::__construct($test);
     //$this->engine = new MarkParse( $text );
 }
All Usage Examples Of Marker::__construct