Php代码:
void test() {
using A<T>::a;
std::cout << "testing... " << a << std::endl;
};
以上代码工作完善,但条件$resData = array('result'=>true);
if($resData["result"] == "success")
echo "Success";
else
echo "Failure";
混淆包含$resData["result"]
因此,我们用于比较的实际情况类似于true
或if($resData["result"] == true)
但是,此处条件为{ {1}}并且运行良好并给出完美的结果。
所以,我的问题是条件如何适用于if($resData["result"])
?