Re: [PHP] Broken compatibility with escaping { in php 5.2
- From: znemeth@xxxxxxxxxxxxxx (Németh Zoltán)
- Date: Thu, 18 Jan 2007 14:26:36 +0100
On cs, 2007-01-18 at 14:19 +0100, Jochem Maas wrote:
Bogdan Ribic wrote:
Hi all,
Try this:
$a = '';
echo "\{$a}";
from php 4, it outputs "{}", from php 5.2 (one that comes with Zend 5.5)
no-one here supports Zend.
it outputs "\{}", thus breaking existing scripts.
AFAICT the escaping in that string is wrong - the fact that it did work
the way you want it to is probably sheer luck.
lastly I ran your tests and determined at the least that the 'break'
occur *prior* to 5.2. at a guess it probably changed in 5.0, here are my results:
# php -r 'echo "php",phpversion(),":\n"; $a = ""; var_dump("\{$s}");' ;
php5 -r 'echo "php",phpversion(),":\n"; $a = ""; var_dump("\{$s}");'
OUTPUT:
php4.3.10-18:
string(2) "{}"
php5.1.2:
string(3) "\{}"
be pragmatic - fix your script :-)
is this the correct form:
$a = '';
echo "\{$a\}";
if I want to get "{}" a result?
(I think it is)
greets
Zoltán Németh
.
- Follow-Ups:
- Re: [PHP] Broken compatibility with escaping { in php 5.2
- From: Jochem Maas
- Re: [PHP] Broken compatibility with escaping { in php 5.2
- References:
- Broken compatibility with escaping { in php 5.2
- From: Bogdan Ribic
- Re: [PHP] Broken compatibility with escaping { in php 5.2
- From: Jochem Maas
- Broken compatibility with escaping { in php 5.2
- Prev by Date: Re: [PHP] Broken compatibility with escaping { in php 5.2
- Next by Date: What makes a PHP expert
- Previous by thread: Re: [PHP] Broken compatibility with escaping { in php 5.2
- Next by thread: Re: [PHP] Broken compatibility with escaping { in php 5.2
- Index(es):
Relevant Pages
|