本文整理汇总了PHP中city::edit方法的典型用法代码示例。如果您正苦于以下问题:PHP city::edit方法的具体用法?PHP city::edit怎么用?PHP city::edit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类city
的用法示例。
在下文中一共展示了city::edit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: exit
defined('IN_DESTOON') or exit('Access Denied');
$menus = array(array('分站添加', '?file=' . $file . '&action=edit'), array('分站管理', '?file=' . $file), array('批量索引', '?file=' . $file . '&action=letter'));
$AREA = cache_read('area.php');
$areaid = isset($areaid) ? intval($areaid) : 0;
$do = new city($areaid);
switch ($action) {
case 'edit':
if ($submit) {
if (!$post['areaid']) {
msg('请选择所在地区');
}
if (!$post['name']) {
msg('分站名不能为空');
}
$city['cityname'] = trim($city['cityname']);
$do->edit($post);
dmsg('更新成功', $forward);
} else {
if ($areaid) {
@extract($do->get_one());
} else {
$areaid = $listorder = 0;
$name = $style = $letter = $domain = $iparea = $template = $seo_title = $seo_keywords = $seo_description = '';
}
include tpl('city_edit');
}
break;
case 'letter':
$result = $db->query("SELECT * FROM {$DT_PRE}city WHERE letter=''");
while ($r = $db->fetch_array($result)) {
$letter = $do->letter($r['name']);
示例2: city
require 'subclasses/city.php';
$dbh_city = new city();
$object_name = 'dbh_city';
require 'components/create_form_data.php';
extract($arr_form_data);
if ($_POST['btn_cancel']) {
log_action('Pressed cancel button');
redirect("listview_city.php?{$query_string}");
}
if ($_POST['btn_submit']) {
log_action('Pressed submit button');
$message .= $dbh_city->sanitize($arr_form_data)->lst_error;
extract($arr_form_data);
if ($dbh_city->check_uniqueness_for_editing($arr_form_data)->is_unique) {
//Good, no duplicate in database
} else {
$message = "Record already exists with the same primary identifiers!";
}
if ($message == "") {
$dbh_city->edit($arr_form_data);
redirect("listview_city.php?{$query_string}");
}
}
}
require 'subclasses/city_html.php';
$html = new city_html();
$html->draw_header('Edit City', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_hidden('city_id');
$html->draw_controls('edit');
$html->draw_footer();
示例3: __autoload
<center>
<table style="width:1%">
<tr>
</tr>
<tr>
<td>001</td>
<td>:</td>
<td>Masum</td>
<td>:</td>
<td>Dhaka</td>
</tr>
</center>
<?php
function __autoload($className)
{
$fullPath = $className . ".php";
$finalDis = "/../../../" . str_replace("\\", "/", $fullPath);
//echo $finalDis;
include_once $finalDis;
}
use src\Bitm\SEIP117637\city\City;
$city = new city();
$city->edit();
echo "<hr>";