|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-11-12 09:40 UTC] olonoh at yahoo dot com
When an IT variable is set with "$" in the value, the value isn't taken literally. Example:
<?php
require_once('HTML/IT.php');
$t = new IntegratedTemplate;
$t->setTemplate('{x}', TRUE, TRUE);
$t->setVariable('x', 'I have $1 in my pocket');
$t->show();
?>
The above prints "I have in my pocket".
A solution would be to use str_replace() instead of preg_replace() when substituting the value. Patch is below:
--- /usr/local/lib/php/HTML/IT.php 2002-10-14 12:05:57.000000000 -0500
+++ /usr/local/lib/php/HTML/IT.php 2002-11-04 11:11:31.000000000 -0500
@@ -414,7 +414,7 @@
if ($this->clearCacheOnParse) {
foreach ($this->variableCache as $name => $value) {
- $regs[] = "@" . $this->openingDelimiter . $name . $this->closingDelimiter . "@";
+ $regs[] = $this->openingDelimiter . $name . $this->closingDelimiter;
$values[] = $value;
}
$this->variableCache = array();
@@ -424,7 +424,7 @@
foreach ($this->blockvariables[$block] as $allowedvar => $v) {
if (isset($this->variableCache[$allowedvar])) {
- $regs[] = "@".$this->openingDelimiter . $allowedvar . $this->closingDelimiter . "@";
+ $regs[] = $this->openingDelimiter . $allowedvar . $this->closingDelimiter;
$values[] = $this->variableCache[$allowedvar];
unset($this->variableCache[$allowedvar]);
}
@@ -433,7 +433,7 @@
}
- $outer = (0 == count($regs)) ? $this->blocklist[$block] : preg_replace($regs, $values, $this->blocklist[$block]);
+ $outer = (0 == count($regs)) ? $this->blocklist[$block] : str_replace($regs, $values, $this->blocklist[$block]);
$empty = (0 == count($values)) ? true : false;
if (isset($this->blockinner[$block])) {
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 16:00:01 2025 UTC |
I think you misunderstood the report. The $1 was the literal value (note the single quotes around the string). When IT.php processes the value it's evaluated instead of being taken literally -- I wouldn't think that'd be expected behavior. Try this modified example: <?php require_once('HTML/IT.php'); $value = 'I have $1 in my pocket'; $t = new IntegratedTemplate; $t->setTemplate('{x}', TRUE, TRUE); $t->setVariable('x', $value); print $value."\n"; $t->show(); ?> This prints: I have $1 in my pocket I have in my pocket The first time it's printed correctly, but after it's processed in IT.php it's printed incorrectly.