Adds content to the end of a token's current content.
int $stackPtr The position of the token in the token stack.:
string $content The content to add.:
bool If the change was accepted.
public function addContent($stackPtr, $content) { $current = $this->getTokenContent($stackPtr); return $this->replaceToken($stackPtr, $current . $content); }