我有这个代码:
class int64(){
var $h; var $l;
function int64(){
$this->$h=$h;
$this->$l=$l;
}
}
function int64copy($dst,$src){
$dst.$h = $src.$h;
$dst.$l = $src.$l;
}
在调用函数时int64copy
它的说法Catchable Fatal Error: object of the class int64 could not be converted to string in line
任何的想法?