想要给错误发短信但代码有问题导致它只返回[object Object],错误号0就是成功。
if (ldap_errno($ldap) != 0) {
$res = ldap_error($ldap);
echo json_encode($res);
}
$.ajax({
type: "POST",
dataType: 'json',
url: "php/main.php",
success: function(res) {
$('#loadingmessage').hide();
//cool things
},
error: function(res) {
$('#loadingmessage').hide();
$(".mssg").text(res);
}
});