Hello,
I was examinig the scripts used for some PHP gallery (Coppermine).
In some scripts, I found "identifiers" enclosed by curly braces ({}) . So far, I could not find the meaning of this and how it works.
Example:
In some script, a "Heredoc" is being defined. In this heredoc, there are placeholders for URLs, etc. in Hyperlinkks:
$template_main_menu = <<<EOT
<span class="topmenu">
<!-- BEGIN album_list -->
<a href="{ALB_LIST_TGT}" title="{ALB_LIST_TITLE}">{ALB_LIST_LNK}</a>
<!-- END album_list -->
Other example:
<html dir="{LANG_DIR}">
There are lots of these in this script.
Can anyone tell me what's it about?
Thanks for your help.
JJ Mouris