本文整理汇总了PHP中tag::update方法的典型用法代码示例。如果您正苦于以下问题:PHP tag::update方法的具体用法?PHP tag::update怎么用?PHP tag::update使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tag
的用法示例。
在下文中一共展示了tag::update方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<?php
/*
* tagControl.php
* 负责处理管理员管理系统标签的逻辑
* Created By C860 at 2014-1-15
*/
include_once '../conf/config.php';
//需要管理员权限
sys::needAdmin('index.php');
//引入相关模型类
include_once '../Models/tag.php';
if (isset($_POST['type'])) {
if ($_POST['type'] == 'modify') {
if (isset($_POST['tag_id']) && is_numeric($_POST['tag_id']) && isset($_POST['name']) && !empty($_POST['name']) && isset($_POST['isFormal']) && is_numeric($_POST['isFormal']) && isset($_POST['img']) && !empty($_POST['img'])) {
if (tag::update($_POST['tag_id'], $_POST['name'], $_POST['isFormal'], $_POST['img'])) {
sys::alert('修改成功!');
} else {
sys::alert('出现未知错误!');
}
sys::redirect('../back/tagControl.php');
}
} else {
if ($_POST['type'] == 'add') {
if (isset($_POST['name']) && !empty($_POST['name']) && isset($_POST['isFormal']) && is_numeric($_POST['isFormal']) && isset($_POST['img']) && !empty($_POST['img'])) {
if (tag::add($_POST['name'], $_POST['isFormal'], $_POST['img'])) {
sys::alert('新增标签成功!');
} else {
sys::alert('出现未知错误!');
}
sys::redirect('../back/tagControl.php');
示例2: photo_edit_form_completed
static function photo_edit_form_completed($photo, $form)
{
tag::update($photo, $form->edit_photo->tags->value);
}