Text_Diff_Op_copy::__construct
PHP5 constructor.
Method of the class: Text_Diff_Op_copy{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Text_Diff_Op_copy = new Text_Diff_Op_copy(); $Text_Diff_Op_copy->__construct( $orig, $final );
- $orig(required)
- .
- $final
- .
Default:false
Text_Diff_Op_copy::__construct() Text Diff Op copy:: construct code WP 7.0
function __construct( $orig, $final = false )
{
if (!is_array($final)) {
$final = $orig;
}
$this->orig = $orig;
$this->final = $final;
}