在非对象上调用成员函数 combinestring() 时遇到问题。
**Index.php**
inlcude("string.php");
calldata('usa');
**string.php**
$a=new a();
funciton calldata($val){
$st1="select a from table 1 where country=".$a->combinestring($val);
return $st1;
}
**Class A**
function combinestring($abc){
Return "'".$abc."'";
}
未知 $a->combinestring($val);
如何解决这个问题呢。
最好的祝福