當調用成員函數在非對象上組合string()時遇到問題。解決調用成員函數在非對象上的combinetring()
**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-> combinetring($ val);
如何解決這個問題。
問候