私はこのコードを持っています:
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
何か案が?