API Reference / API Parameters / snippetEllipsisText
Type: string
Engine default: "…" (U+2026)
Parameter syntax
'snippetEllipsisText' => "text"

Can be used in these methods:
search, setSettings, browseObjects, searchForFacetValues, generateSecuredApiKey, addApiKey, updateApiKey

About this parameter# A

String used as an ellipsis indicator when a snippet is truncated.

Usage notes#

  • Defaults to an empty string for all applications created before March 10th, 2016.

  • Defaults to "…" (U+2026, HORIZONTAL ELLIPSIS) for applications created after that date.

Indices created in 2021 and 2022 may have an incorrect default value. To fix that, explicitly set the value for snippetEllipsisText.

Examples# A

Set default snippet ellipsis text#

1
2
3
$index->setSettings([
  'snippetEllipsisText' => '…'
]);

Override default snippet ellipsis text for the current search#

1
2
3
$results = $index->search('query', [
  'snippetEllipsisText' => ''
]);
Did you find this page helpful?
PHP v3