本文整理汇总了PHP中SearchEngine::getSearchFieldsText方法的典型用法代码示例。如果您正苦于以下问题:PHP SearchEngine::getSearchFieldsText方法的具体用法?PHP SearchEngine::getSearchFieldsText怎么用?PHP SearchEngine::getSearchFieldsText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SearchEngine
的用法示例。
在下文中一共展示了SearchEngine::getSearchFieldsText方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSearchURL
/**
* Returns a search URL
*
* @param mixed $words the search words target
* @param mixed $dates the dates that limit the search
* @param mixed $fields the fields on which to search
* NOTE: $words and $dates are mutually exclusive and $fields applies only to $words searches
* @param int $page the page number for the URL
* @param array $object_list the list of objects to search
* @return string
* @since 1.1.3
*/
function getSearchURL($words, $dates, $fields, $page, $object_list = NULL)
{
$urls = array();
$rewrite = false;
if (MOD_REWRITE) {
$rewrite = true;
if (is_array($object_list)) {
foreach ($object_list as $obj) {
if ($obj) {
$rewrite = false;
break;
}
}
}
}
if ($rewrite) {
$url = SEO_WEBPATH . '/' . _SEARCH_ . '/';
} else {
$url = SEO_WEBPATH . "/index.php";
$urls[] = 'p=search';
}
if ($words) {
if (is_array($words)) {
foreach ($words as $key => $word) {
$words[$key] = search_quote($word);
}
$words = implode(',', $words);
}
$words = SearchEngine::encode($words);
if ($rewrite) {
$url .= $words . '/';
} else {
$urls[] = 'words=' . $words;
}
if (!empty($fields)) {
if (!is_array($fields)) {
$fields = explode(',', $fields);
}
$temp = $fields;
if ($rewrite && count($fields) == 1 && array_shift($temp) == 'tags') {
$url = SEO_WEBPATH . '/' . _TAGS_ . '/' . $words . '/';
} else {
$search = new SearchEngine();
$urls[] = $search->getSearchFieldsText($fields, 'searchfields=');
}
}
} else {
// dates
if (is_array($dates)) {
$dates = implode(',', $dates);
}
if ($rewrite) {
$url = SEO_WEBPATH . '/' . _ARCHIVE_ . '/' . $dates . '/';
} else {
$urls[] = "date={$dates}";
}
}
if ($page > 1) {
if ($rewrite) {
$url .= $page;
} else {
$urls[] = "page={$page}";
}
}
if (is_array($object_list)) {
foreach ($object_list as $key => $list) {
if (!empty($list)) {
if (is_array($list)) {
$list = implode(',', $list);
}
$urls[] = 'in' . $key . '=' . urlencode($list);
}
}
}
if (!empty($urls)) {
$url .= '?' . implode('&', $urls);
}
return $url;
}
示例2: getSearchURL
/**
* Returns a search URL
*
* @param mixed $words the search words target
* @param mixed $dates the dates that limit the search
* @param mixed $fields the fields on which to search
* @param int $page the page number for the URL
* @param array $object_list the list of objects to search
* @return string
* @since 1.1.3
*/
function getSearchURL($words, $dates, $fields, $page, $object_list = NULL)
{
if (!is_null($object_list)) {
if (array_key_exists(0, $object_list)) {
// handle old form albums list
internal_deprecations::getSearchURL();
$object_list = array('albums' => $object_list);
}
}
$urls = '';
$rewrite = false;
if (MOD_REWRITE) {
$rewrite = true;
if (is_array($object_list)) {
foreach ($object_list as $obj) {
if ($obj) {
$rewrite = false;
break;
}
}
}
}
if ($rewrite) {
if (empty($dates)) {
$url = SEO_WEBPATH . '/' . _SEARCH_ . '/';
} else {
$url = SEO_WEBPATH . '/' . _ARCHIVE_ . '/';
}
} else {
$url = SEO_WEBPATH . "/index.php?p=search";
}
if (!empty($fields) && empty($dates)) {
if (!is_array($fields)) {
$fields = explode(',', $fields);
}
$temp = $fields;
if ($rewrite && count($fields) == 1 && array_shift($temp) == 'tags') {
$url = SEO_WEBPATH . '/' . _TAGS_ . '/';
} else {
$search = new SearchEngine();
$urls = $search->getSearchFieldsText($fields, 'searchfields=');
}
}
if (!empty($words)) {
if (is_array($words)) {
foreach ($words as $key => $word) {
$words[$key] = search_quote($word);
}
$words = implode(',', $words);
}
$words = strtr($words, array('%' => '__25__', '&' => '__26__', '#' => '__23__', '/' => '__2F__'));
if ($rewrite) {
$url .= urlencode($words);
} else {
$url .= "&words=" . urlencode($words);
}
}
if (!empty($dates)) {
if (is_array($dates)) {
$dates = implode(',', $dates);
}
if ($rewrite) {
$url .= $dates;
} else {
$url .= "&date={$dates}";
}
}
if ($page > 1) {
if ($rewrite) {
$url .= "/{$page}";
} else {
if ($urls) {
$urls .= '&';
}
$urls .= "page={$page}";
}
}
if (!empty($urls)) {
if ($rewrite) {
$url .= '?' . $urls;
} else {
$url .= '&' . $urls;
}
}
if (is_array($object_list)) {
foreach ($object_list as $key => $list) {
if (!empty($list)) {
$url .= '&in' . $key . '=' . html_encode(implode(',', $list));
}
//.........这里部分代码省略.........
示例3: getSearchURL
/**
* Returns a search URL
*
* @param mixed $words the search words target
* @param mixed $dates the dates that limit the search
* @param mixed $fields the fields on which to search
* @param int $page the page number for the URL
* @param array $object_list the list of objects to search
* @return string
* @since 1.1.3
*/
function getSearchURL($words, $dates, $fields, $page, $object_list = NULL)
{
if (!is_null($object_list)) {
if (array_key_exists(0, $object_list)) {
// handle old form albums list
require_once SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/deprecated-functions.php';
deprecated_function_notify(gettext('getSearchURL $album_list parameter is deprecated. Pass array("albums"=>array(album, album, ...)) instead.'));
$object_list = array('albums' => $object_list);
}
}
if ($mr = MOD_REWRITE) {
$url = WEBPATH . "/page/search/";
} else {
$url = WEBPATH . "/index.php?p=search";
}
if (!empty($fields) && empty($dates)) {
if (!is_array($fields)) {
$fields = explode(',', $fields);
}
$temp = $fields;
if ($mr && count($fields) == 1 && array_shift($temp) == 'tags') {
$url .= "tags/";
$urls = '';
} else {
$search = new SearchEngine();
$urls = $search->getSearchFieldsText($fields, 'searchfields=');
}
}
if (!empty($words)) {
if (is_array($words)) {
foreach ($words as $key => $word) {
$words[$key] = search_quote($word);
}
$words = implode(',', $words);
}
if (MOD_REWRITE) {
$url .= urlencode($words);
} else {
$url .= "&words=" . urlencode($words);
}
}
if (!empty($dates)) {
if (is_array($dates)) {
$dates = implode(',', $dates);
}
if (MOD_REWRITE) {
$url .= "archive/{$dates}";
} else {
$url .= "&date={$dates}";
}
}
if ($page > 1) {
if ($mr) {
$url .= "/{$page}";
} else {
$urls .= $urls ? '&' : '' . "page={$page}";
}
}
if (!empty($urls)) {
if (MOD_REWRITE) {
$url .= '?' . $urls;
} else {
$url .= '&' . $urls;
}
}
if (is_array($object_list)) {
foreach ($object_list as $key => $list) {
if (!empty($list)) {
$mr = false;
$url .= '&in' . $key . '=' . html_encode(implode(',', $list));
}
}
}
return $url;
}