Function Database_Static_xml->get_delimited_identifier

Definitions

sources/database/xml.php

  • Get the character used to surround fields to protect from keyword status.We generally only use it when renaming fields (renaming them on upgrade so that we don't get a conflict with a keyword).
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: string

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$end boolean No No False N/A N/A Whether to get end character

Returns

  • Character (blank: has none defined)
  • Type: string
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Get the character used to surround fields to protect from keyword status.We generally only use it when renaming fields (renaming them on upgrade so that we don't get a conflict with a keyword).
 *
 * @param  boolean $end Whether to get end character
 * @return string Character (blank: has none defined)
 */

public function get_delimited_identifier(bool $end = false) : string