當前位置: 首頁>>代碼示例>>PHP>>正文


PHP table::getLastId方法代碼示例

本文整理匯總了PHP中table::getLastId方法的典型用法代碼示例。如果您正苦於以下問題:PHP table::getLastId方法的具體用法?PHP table::getLastId怎麽用?PHP table::getLastId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在table的用法示例。


在下文中一共展示了table::getLastId方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: table

<?php

@($a = $_SESSION['language']);
$tbl = new table('support');
if (isset($_POST["done"])) {
    $field = 'id,loai,name,nickname,details,image,ordering,phone';
    $image = uploadFile('image', 0, '../Images/Support/');
    // values
    // format($str,$isComma=1)
    $values = format($tbl->getLastId() + 1, 1);
    $values .= format($_POST["loai"], 1);
    $values .= format($_POST["name"], 1);
    $values .= format($_POST["nickname"], 1);
    $values .= format($_POST["details"], 1);
    $values .= format(str_replace('../', '', $image), 1);
    $values .= format($_POST["ordering"], 0);
    $values .= format($_POST["phone"], 0);
    // insertObject($field,$value)
    $res = $tbl->insertObject($field, $values);
    if ($res) {
        echo "OK!";
    }
}
?>
<div id="center-column">
			<div class="top-bar">
			  <h1>Support</h1>
				<div class="breadcrumbs"><a href="#">Content</a> / <a href="#">Thêm</a></div>
			</div><br />
 
		  
開發者ID:aile54,項目名稱:akachan,代碼行數:29,代碼來源:add.php

示例2: loadPage

<?php

$tbl = new table('news');
if (isset($_POST["done"])) {
    // get field
    $field = 'id,name,details,image,hot,date_add,alias,url,lang';
    $str_img = upload_img('image', '../Images/News/', 250, 163);
    $id = $tbl->getLastId() + 1;
    $values = format($id, 1);
    //$values.= format($_POST["catid"],1);
    $values .= format($_POST["name"], 1);
    $values .= format($_POST["details"], 1);
    $values .= format(str_replace('../', '', $str_img), 1);
    $values .= format(isCheck(isset($_POST["hot"])), 1);
    $values .= format(time(), 1);
    $values .= format(rand_name($_POST["name"], $id), 1);
    $values .= format($_POST["url"], 1);
    $values .= format('0', 0);
    // insertObject($field,$value)
    $res = $tbl->insertObject($field, $values);
    if ($res) {
        //var_dump($res);
        echo "OK";
    }
}
?>
<div id="center-column">
			<div class="top-bar">
			  <h1>Tin tức</h1>
			  <div class="breadcrumbs"><a href="<?php 
echo loadPage('news');
開發者ID:aile54,項目名稱:akachan,代碼行數:31,代碼來源:add.php


注:本文中的table::getLastId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。