本文整理匯總了PHP中Frontend\Core\Engine\Model::addNumber方法的典型用法代碼示例。如果您正苦於以下問題:PHP Model::addNumber方法的具體用法?PHP Model::addNumber怎麽用?PHP Model::addNumber使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Frontend\Core\Engine\Model
的用法示例。
在下文中一共展示了Model::addNumber方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getUrl
/**
* Retrieve a unique URL for a profile based on the display name.
*
* @param string $displayName The display name to base on.
* @param int $id The id of the profile to ignore.
* @return string
*/
public static function getUrl($displayName, $id = null)
{
// decode special chars
$displayName = \SpoonFilter::htmlspecialcharsDecode((string) $displayName);
// urlise
$url = (string) CommonUri::getUrl($displayName);
// get db
$db = FrontendModel::getContainer()->get('database');
// new item
if ($id === null) {
// get number of profiles with this URL
$number = (int) $db->getVar('SELECT 1
FROM profiles AS p
WHERE p.url = ?
LIMIT 1', (string) $url);
// already exists
if ($number != 0) {
// add number
$url = FrontendModel::addNumber($url);
// try again
return self::getURL($url);
}
} else {
// current profile should be excluded
// get number of profiles with this URL
$number = (int) $db->getVar('SELECT 1
FROM profiles AS p
WHERE p.url = ? AND p.id != ?
LIMIT 1', array((string) $url, (int) $id));
// already exists
if ($number != 0) {
// add number
$url = FrontendModel::addNumber($url);
// try again
return self::getURL($url, $id);
}
}
return $url;
}