Function __global->ecv2_COMMA_LIST_POP

Definitions

sources/symbols2.php

  • Evaluate a particular Tempcode symbol.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: string

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$lang LANGUAGE_NAME No No required parameter N/A N/A The language to evaluate this symbol in (some symbols refer to language elements)
$escaped array No No required parameter N/A N/A Array of escaping operations
$param array No No required parameter N/A N/A Parameters to the symbol. For all but directive it is an array of strings. For directives it is an array of Tempcode objects. Actually there may be template-style parameters in here, as an influence of singular_bind and these may be Tempcode, but we ignore them.

Returns

  • The result
  • Type: string
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Evaluate a particular Tempcode symbol.
 *
 * @param  LANGUAGE_NAME $lang The language to evaluate this symbol in (some symbols refer to language elements)
 * @param  array $escaped Array of escaping operations
 * @param  array $param Parameters to the symbol. For all but directive it is an array of strings. For directives it is an array of Tempcode objects. Actually there may be template-style parameters in here, as an influence of singular_bind and these may be Tempcode, but we ignore them.
 * @return string The result
 */

function ecv2_COMMA_LIST_POP(string $lang, array $escaped, array $param) : string