本文整理汇总了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;
}
}