我使用 json onclick 脚本来触发 php 函数。我用以下方法调用 php 函数:
$('#dtable').on('click', '[name=option3]', function () {
var select = $(this);
var id = select.attr('id');
$.post('index.php/stop/'+id+'', function(json) {
if (json && json.status) {
$("#failure").show().delay(2500).fadeOut(1500);
} else {
$("#success").show().delay(2500).fadeOut(1500);
}
}
);
} );
如果该项目是触发器,他会在我的 index.php 中调用一个 slim 属性
$admin->slim->post('/stop/:action', function($action) use ($admin) {
$admin->slim->contentType('application/json');
echo json_encode($admin->cont->Stop($action));
在此之后,他触发了功能
function Stop($action) {
$port = $action;
$connection = @fsockopen($this->cfg->base_host, $port, $errno, $errstr, 1);
if (!$connection) {
return false;
} else {
$pid = $this->db->query("SELECT pid FROM testdb WHERE port='" . $port . "'", SQL_ALL, SQL_ASSOC);
if ($pid == "") {
return false;
} else {
......
}
}
}
}
}
唯一的问题是来自 json 的答案总是成功,但函数没有返回 true 或 false
有人知道我做错了什么,或者有人可以给我一些建议。
- 添加了有关该功能的更多信息