本文整理匯總了PHP中DBUtils::toUId方法的典型用法代碼示例。如果您正苦於以下問題:PHP DBUtils::toUId方法的具體用法?PHP DBUtils::toUId怎麽用?PHP DBUtils::toUId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DBUtils
的用法示例。
在下文中一共展示了DBUtils::toUId方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: header
$row = $statement->fetch(PDO::FETCH_ASSOC);
$shortUrl = _SITE_URL . $shortCode . DBUtils::toUId($row["id"], _BASE_MULTIPLIER);
if (isset($_REQUEST['redirect']) && $_REQUEST['redirect'] == 1) {
header('Location: ' . $shortUrl);
} else {
echo $shortUrl;
}
return;
}
$query = "INSERT INTO `items` (type, name, artist, album, image" . $insertQueryColumns . ", date) ";
$query .= "VALUES(" . $itemType . ", :name, :artist, :album, :image";
$query .= $insertQueryValues . ", NOW())";
$statement = $db->prepare($query);
$statement->bindParam(':name', $name, PDO::PARAM_STR);
$statement->bindParam(':artist', $artist, PDO::PARAM_STR);
$statement->bindParam(':album', $album, PDO::PARAM_STR);
$statement->bindParam(':image', $image, PDO::PARAM_STR);
// Executes the query
$exe = $statement->execute();
$id = $db->lastInsertId();
if (!$exe || $exe == false || !$id || $id == 0) {
// If we fail ...
echo _SITE_URL . "/woops";
} else {
$shortUrl = _SITE_URL . $shortCode . DBUtils::toUId($id, _BASE_MULTIPLIER);
if (isset($_REQUEST['redirect']) && $_REQUEST['redirect'] == 1) {
header('Location: ' . $shortUrl);
} else {
echo $shortUrl;
}
}