本文整理汇总了PHP中DbHandler::updateTask方法的典型用法代码示例。如果您正苦于以下问题:PHP DbHandler::updateTask方法的具体用法?PHP DbHandler::updateTask怎么用?PHP DbHandler::updateTask使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DbHandler
的用法示例。
在下文中一共展示了DbHandler::updateTask方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
/**
* Updating existing task
* method PUT
* params task, status
* url - /tasks/:id
*/
$app->put('/tasks/:id', 'authenticate', function ($task_id) use($app) {
// check for required params
verifyRequiredParams(array('task', 'status'));
global $user_id;
$task = $app->request->put('task');
$status = $app->request->put('status');
$db = new DbHandler();
$response = array();
// updating task
$result = $db->updateTask($user_id, $task_id, $task, $status);
if ($result) {
// task updated successfully
$response["error"] = false;
$response["message"] = "Task updated successfully";
} else {
// task failed to update
$response["error"] = true;
$response["message"] = "Task failed to update. Please try again!";
}
echoRespnse(200, $response);
});
/**
* Deleting task. Users can delete only their tasks
* method DELETE
* url /tasks
示例2: function
/**
* Updating existing contact
* method PUT
* params contact, status
* url - /contacts/:id
*/
$app->put('/contacts/:id', 'authenticate', function ($contact_id) use($app) {
// check for required params
verifyRequiredParams(array('contact', 'status'));
global $user_id;
$contact = $app->request->put('contact');
$status = $app->request->put('status');
$db = new DbHandler();
$response = array();
// updating task
$result = $db->updateTask($user_id, $contact_id, $contact, $status);
if ($result) {
// contact updated successfully
$response["error"] = false;
$response["message"] = "Contact updated successfully";
} else {
// contact failed to update
$response["error"] = true;
$response["message"] = "Contact failed to update. Please try again!";
}
echoRespnse(200, $response);
});
/**
* Deleting contact. Users can delete only their contacts
* method DELETE
* url /tasks
示例3: function
});
/**
* Updating existing task
* method PUT
* params task, status
* url - /tasks/:id
*/
$app->put('/tasks/:id', 'authenticate', function ($task_id) use($app) {
// check for required params
verifyRequiredParams(array('task', 'status'));
$task = $app->request->put('task');
$status = $app->request->put('status');
$db = new DbHandler();
$response = array();
// updating task
$result = $db->updateTask($_SESSION['user_id'], $task_id, $task, $status);
if ($result) {
// task updated successfully
$response["error"] = false;
$response["message"] = "Task updated successfully";
} else {
// task failed to update
$response["error"] = true;
$response["message"] = "Task failed to update. Please try again!";
}
echoRespnse(200, $response);
});
/**
* Deleting task. Users can delete only their tasks
* method DELETE
* url /tasks