M 在我的页面上收到以下警告:
"strcmp() expects parameter 2 to be string, object given"
我的代码如下:a.php:
$x = $_GET['a'];
$y = $_GET['b'];
$obj = new TestClass();
$obj->methodCall($x,$y)
测试类:
class TestClass{
public function methodCall($x,$y){
if((strcmp('val1',$x) > 0) && (strcmp('val2',$y) >0)){
//do something
}
}
}
在我使用 strcmp 的行收到警告。它看起来很简单,但无法找出问题:(