本文整理汇总了PHP中photo::updatePost方法的典型用法代码示例。如果您正苦于以下问题:PHP photo::updatePost方法的具体用法?PHP photo::updatePost怎么用?PHP photo::updatePost使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类photo
的用法示例。
在下文中一共展示了photo::updatePost方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: editPost
function editPost()
{
system::setParam("page", "addPage");
$id = intval($_GET["contentID"]);
$fill = $_POST;
if ($_POST) {
// echo '<pre>'.print_r($_POST,1).'</pre>';
if (isset($_POST['x1']) && isset($_POST['y1']) && isset($_POST['w1']) && isset($_POST['h1']) && $_POST['x1'] != '' && $_POST['y1'] != '' && $_POST['w1'] != '' && $_POST['h1'] != '') {
$data = array('x1' => $_POST['x1'], 'y1' => $_POST['y1'], 'w1' => $_POST['w1'], 'h1' => $_POST['h1'], 'width' => 200, 'height' => 200);
unset($_POST['x1'], $_POST['y1'], $_POST['w1'], $_POST['h1']);
photo::cropImage($_POST['picture'], $data, '200x200');
}
if (isset($_POST['x2']) && isset($_POST['y2']) && isset($_POST['w2']) && isset($_POST['h2']) && $_POST['x2'] != '' && $_POST['y2'] != '' && $_POST['w2'] != '' && $_POST['h2'] != '') {
$data = array('x1' => $_POST['x2'], 'y1' => $_POST['y2'], 'w1' => $_POST['w2'], 'h1' => $_POST['h2'], 'width' => 200, 'height' => 140);
unset($_POST['x2'], $_POST['y2'], $_POST['w2'], $_POST['h2']);
photo::cropImage($_POST['picture'], $data, '200x140');
}
$_POST['type'] = 'news';
photo::updatePost($_POST, $id);
}
$fill = photo::getPost($id);
$this->smarty->assign("fill", $fill);
}