本文整理匯總了PHP中Images::handlePost方法的典型用法代碼示例。如果您正苦於以下問題:PHP Images::handlePost方法的具體用法?PHP Images::handlePost怎麽用?PHP Images::handlePost使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Images
的用法示例。
在下文中一共展示了Images::handlePost方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: saveDatabase
function saveDatabase(array $array)
{
$image = new Images();
return $image->handlePost($array);
}
示例2: ImageDetail
require_once "../model/imageDetail.model.php";
//require_once("imageDetail.control.php");
//$art->forDelData($_POST);
/*if($_POST['option']=='update' && $_POST['imgCat']){
//echo $_POST['option'].$_POST['imgCat'];
$imgd=new ImageDetail();
//$imgd->handlePost(array("option"=>"update","imgID"=>$_POST['id'],"imgCat"=>$_POST['imgCat']));
if($imgd->updateImgCat(array("imgCat"=>$_POST['imgCat']),array("imgID"=>$_POST['id']))){
unset($_POST['imgCat']);
}else{
die("更新imageDetail錯誤!");
}
}*/
if ($_POST['option'] == 'delete' && $_POST['hrefArray']) {
//echo $_POST['option'].$_POST['imgCat'];
foreach ($_POST['hrefArray'] as $item) {
$fileName = $realRootPath . $item;
//echo $fileName;
if (file_exists($fileName)) {
if (!unlink($fileName)) {
die("文件刪除失敗!");
}
} else {
die("文件不存在!");
}
}
unset($_POST['hrefArray']);
}
$img = new Images();
echo $img->handlePost($_POST);