php-general Digest 12 Feb 2009 12:47:45 -0000 Issue 5954

Topics (messages 288134 through 288154):

Re: Best way to post XML via curl?
        288134 by: Brian Dunning
        288135 by: Stuart
        288136 by: Brian Dunning
        288137 by: Stuart
        288138 by: Brian Dunning
        288139 by: Stuart

Re: Seeking PHP Work in Chicago or Telecommute
        288140 by: Daniel Brown

Simple open source CMS as a starting point
        288141 by: dzenan.causevic.wise-t.com
        288143 by: Lester Caine
        288144 by: Jean Pimentel
        288153 by: German Geek

DOMDocument help
        288142 by: Michael A. Peters

How can an elephant count for nothing?
        288145 by: Clancy
        288146 by: Per Jessen
        288147 by: Jochem Maas
        288148 by: Yeti
        288149 by: Dotan Cohen

spl_object_hash not hashing unqiue objects BUG
        288150 by: Nick Cooper
        288151 by: Colin Guthrie
        288152 by: Jochem Maas
        288154 by: Jochem Maas

Administrivia:

To subscribe to the digest, e-mail:
        php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-gene...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---
Just realized I didn't happen to mention the problem.   :-)

The server is not seeing any of my posted fields. It's returning a properly-formatted XML response that says I did not submit the required fields. Unfortunately the server is a black box, but lots of other partners use it every day and supposedly there are no problems server side.



--- End Message ---
--- Begin Message ---
2009/2/12 Brian Dunning <br...@briandunning.com>:
> I'm going crazy, can't quite get this encoding to work. I've tried all the
> various combinations, trying to send this block $xml (which is a simple
> string variable) via post along with 3 other params:
>
> $postArgs = http_build_query(array('method'=>'newPrintRequest',
> 'login'=>$login, 'password'=>$password, 'orderxml'=>$xml));
> $ch = curl_init('http://test.server.com/rest_interface.php');
> curl_setopt($ch, CURLOPT_POST, true);
> curl_setopt($ch, CURLOPT_POSTFIELDS, $postArgs);
> curl_setopt($ch, CURLOPT_HEADER, 0);
> curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));

Drop the above line and I reckon it should work. The content you're
sending is not XML, it's form fields which CURL will default to. It
just happens that one of those fields is XML.

> $response = curl_exec($ch);
>
> Is this use of http_build_query the best way to send XML? Any other curl
> options I should be setting? I tried urlencoding() the $xml, I tried
> htmlspecialchars(), I tried nothing at all, I tried &amp and &.... is there
> a "best practice" for how a big block of xml should be posted?

-Stuart

-- 
http://stut.net/

--- End Message ---
--- Begin Message --- This line is the key. WITH the line, I get a properly formatted XML response from the server, telling me that I did not send any valid post fields. WITHOUT the line, all I get back from the server is a '1' and their tech reports that no valid call was received from me.


On Feb 11, 2009, at 4:56 PM, Stuart wrote:

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/ xml"));

Drop the above line and I reckon it should work. The content you're
sending is not XML, it's form fields which CURL will default to. It
just happens that one of those fields is XML.

--- End Message ---
--- Begin Message ---
2009/2/12 Brian Dunning <br...@briandunning.com>:
> This line is the key. WITH the line, I get a properly formatted XML response
> from the server, telling me that I did not send any valid post fields.
> WITHOUT the line, all I get back from the server is a '1' and their tech
> reports that no valid call was received from me.

In that case you're not sending them what they're asking for. Are the
method, login and password fields supposed to be separate or should
they be included in the xml? At the moment they're separate so when
you tell the server it's in XML format you're lying because only part
of it is.

As a test try setting $postArgs = $xml. If I'm right it might either
work or give you and authentication error.

-Stuart

> On Feb 11, 2009, at 4:56 PM, Stuart wrote:
>
>>> curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
>>
>> Drop the above line and I reckon it should work. The content you're
>> sending is not XML, it's form fields which CURL will default to. It
>> just happens that one of those fields is XML.
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php

-- 
http://stut.net/

--- End Message ---
--- Begin Message ---
From the documentation:

Parameters
The following POST parameters are required:
login - Assigned
password - Assigned
method - newPrintRequest, updatePrintRequest, reprintRequest
orderxml - XML according to accompanying documentation

The error that I get says no method was provided, and if you look at my code, it clearly is.


On Feb 11, 2009, at 5:08 PM, Stuart wrote:

2009/2/12 Brian Dunning <br...@briandunning.com>:
This line is the key. WITH the line, I get a properly formatted XML response from the server, telling me that I did not send any valid post fields. WITHOUT the line, all I get back from the server is a '1' and their tech
reports that no valid call was received from me.

In that case you're not sending them what they're asking for. Are the
method, login and password fields supposed to be separate or should
they be included in the xml? At the moment they're separate so when
you tell the server it's in XML format you're lying because only part
of it is.

As a test try setting $postArgs = $xml. If I'm right it might either
work or give you and authentication error.

-Stuart

On Feb 11, 2009, at 4:56 PM, Stuart wrote:

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/ xml"));

Drop the above line and I reckon it should work. The content you're
sending is not XML, it's form fields which CURL will default to. It
just happens that one of those fields is XML.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
http://stut.net/


--- End Message ---
--- Begin Message ---
2009/2/12 Brian Dunning <br...@briandunning.com>:
> From the documentation:
>
> Parameters
> The following POST parameters are required:
> login - Assigned
> password - Assigned
> method - newPrintRequest, updatePrintRequest, reprintRequest
> orderxml - XML according to accompanying documentation
>
> The error that I get says no method was provided, and if you look at my
> code, it clearly is.

The original code you had, minus the Content-Type header will do
exactly that. Either the documentation is wrong or there's something
wrong with their system.

I suggest you create an HTML file containing a form with those fields
that posts to the destination URL, fill it in with valid values and
see what happens when you post that. Remove CURL from the equation,
and if that doesn't work go back to them and show them that form and
the response you get, because according to that documentation it
should work.

-Stuart

> On Feb 11, 2009, at 5:08 PM, Stuart wrote:
>
>> 2009/2/12 Brian Dunning <br...@briandunning.com>:
>>>
>>> This line is the key. WITH the line, I get a properly formatted XML
>>> response
>>> from the server, telling me that I did not send any valid post fields.
>>> WITHOUT the line, all I get back from the server is a '1' and their tech
>>> reports that no valid call was received from me.
>>
>> In that case you're not sending them what they're asking for. Are the
>> method, login and password fields supposed to be separate or should
>> they be included in the xml? At the moment they're separate so when
>> you tell the server it's in XML format you're lying because only part
>> of it is.
>>
>> As a test try setting $postArgs = $xml. If I'm right it might either
>> work or give you and authentication error.
>>
>> -Stuart
>>
>>> On Feb 11, 2009, at 4:56 PM, Stuart wrote:
>>>
>>>>> curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
>>>>
>>>> Drop the above line and I reckon it should work. The content you're
>>>> sending is not XML, it's form fields which CURL will default to. It
>>>> just happens that one of those fields is XML.
>>>
>>> --
>>> PHP General Mailing List (http://www.php.net/)
>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>> --
>> http://stut.net/
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

-- 
http://stut.net/

--- End Message ---
--- Begin Message ---
On Sat, Feb 7, 2009 at 23:37, Richard Lynch <c...@l-i-e.com> wrote:
> I figure if job postings are okay, then so are job requests, right? :-)
>
> I'm looking for PHP work in Chicago or telecommuting.
>
> My resume is here:
> http://l-i-e.com/resume.htm

    I will certainly vouch for Richard's experience to perspective
employers.  If I could convince him to work for a price I could
afford, I'd hire him on the spot.... but rumor has it, he likes having
a roof over his head.

    Nonetheless, a great programmer and a good egg.  Whomever hires
him will be exceedingly happy with the decision.

-- 
</Daniel P. Brown>
daniel.br...@parasane.net || danbr...@php.net
http://www.parasane.net/ || http://www.pilotpig.net/
Unadvertised dedicated server deals, too low to print - email me to find out!

--- End Message ---
--- Begin Message ---
I need simple CMS sistem that I could use as a staring point (to save some
time in setting up the structure) in developing my own CMS. The code
should be simple to understand so that I can easily get on and start
building on it. It would be of great help if it already had features like
statistics, rss feeds, and multi-language support (visitors can click on
the flag at the top of the page and have the pages display the content in
that particular language), but if it doesn't it's okay I would build them.

For example Joomla seems to be too powerfull, and pretty diffucult to
understand at the coding level in order to customize it to serve my
specific needs.

Does anyone know of any promising open source CMS project that I could use
in this respect?

Thanks,
Dzenan


--- End Message ---
--- Begin Message ---
dzenan.cause...@wise-t.com wrote:
I need simple CMS sistem that I could use as a staring point (to save some
time in setting up the structure) in developing my own CMS. The code
should be simple to understand so that I can easily get on and start
building on it. It would be of great help if it already had features like
statistics, rss feeds, and multi-language support (visitors can click on
the flag at the top of the page and have the pages display the content in
that particular language), but if it doesn't it's okay I would build them.

For example Joomla seems to be too powerfull, and pretty diffucult to
understand at the coding level in order to customize it to serve my
specific needs.

Does anyone know of any promising open source CMS project that I could use
in this respect?

bitweaver ...
http://bitweaver.org
Just select the packages you want when you install, and add other
facilities latter as you need them ...

--
Lester Caine - G8HFL
-----------------------------
Contact - http://lsces.co.uk/lsces/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php


--- End Message ---
--- Begin Message ---
Wordpress

Att,
Jean Pimentel
Museu da Infância - www.museudainfancia.com

On Thu, Feb 12, 2009 at 7:01 AM, Lester Caine <les...@lsces.co.uk> wrote:

> dzenan.cause...@wise-t.com wrote:
>
>> I need simple CMS sistem that I could use as a staring point (to save some
>> time in setting up the structure) in developing my own CMS. The code
>> should be simple to understand so that I can easily get on and start
>> building on it. It would be of great help if it already had features like
>> statistics, rss feeds, and multi-language support (visitors can click on
>> the flag at the top of the page and have the pages display the content in
>> that particular language), but if it doesn't it's okay I would build them.
>>
>> For example Joomla seems to be too powerfull, and pretty diffucult to
>> understand at the coding level in order to customize it to serve my
>> specific needs.
>>
>> Does anyone know of any promising open source CMS project that I could use
>> in this respect?
>>
>
> bitweaver ...
> http://bitweaver.org
> Just select the packages you want when you install, and add other
> facilities latter as you need them ...
>
> --
> Lester Caine - G8HFL
> -----------------------------
> Contact - http://lsces.co.uk/lsces/wiki/?page=contact
> L.S.Caine Electronic Services - http://lsces.co.uk
> EnquirySolve - http://enquirysolve.com/
> Model Engineers Digital Workshop - http://medw.co.uk//
> Firebird - http://www.firebirdsql.org/index.php
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message ---
Drupal is probably not the easiest at first, but has a good API and buckets
full of modules, themes and all that stuff. If a framework would be what you
are looking for, i would recommend Symfony. Also heard good things about eZ
Publish, Textpattern, Typo3, Website Baker and WordPress. You can find an
extensive list at

http://php.opensourcecms.com/scripts/show.php?catid=all&cat=All%20Scripts .

Good luck finding the right one for you. I know quite a bit about Symfony,
Joomla/Virtuemart and Drupal but nothing about the others. If you want
support with the ones i know, i might be able to help...

regards,
Tim

Tim-Hinnerk Heuer

http://www.ihostnz.com
Marlene Dietrich  - "Most women set out to try to change a man, and when
they have changed him they do not like h...

2009/2/12 Jean Pimentel <jean...@gmail.com>

> Wordpress
>
> Att,
> Jean Pimentel
> Museu da Infância - www.museudainfancia.com
>
> On Thu, Feb 12, 2009 at 7:01 AM, Lester Caine <les...@lsces.co.uk> wrote:
>
> > dzenan.cause...@wise-t.com wrote:
> >
> >> I need simple CMS sistem that I could use as a staring point (to save
> some
> >> time in setting up the structure) in developing my own CMS. The code
> >> should be simple to understand so that I can easily get on and start
> >> building on it. It would be of great help if it already had features
> like
> >> statistics, rss feeds, and multi-language support (visitors can click on
> >> the flag at the top of the page and have the pages display the content
> in
> >> that particular language), but if it doesn't it's okay I would build
> them.
> >>
> >> For example Joomla seems to be too powerfull, and pretty diffucult to
> >> understand at the coding level in order to customize it to serve my
> >> specific needs.
> >>
> >> Does anyone know of any promising open source CMS project that I could
> use
> >> in this respect?
> >>
> >
> > bitweaver ...
> > http://bitweaver.org
> > Just select the packages you want when you install, and add other
> > facilities latter as you need them ...
> >
> > --
> > Lester Caine - G8HFL
> > -----------------------------
> > Contact - http://lsces.co.uk/lsces/wiki/?page=contact
> > L.S.Caine Electronic Services - http://lsces.co.uk
> > EnquirySolve - http://enquirysolve.com/
> > Model Engineers Digital Workshop - http://medw.co.uk//
> > Firebird - http://www.firebirdsql.org/index.php
> >
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>

--- End Message ---
--- Begin Message ---
I'm using php 5.2.5 with the php-xml module.

I need to split a string of html into elements.

IE -

this <b>is</b> a string <b>that</b> has some bold <b>words</b> in it.

I need to be able to take that string and split it up into textNodes for the parts that are not in bold text, and bold nodes containing the bold elements.

I've tried creating a new DOMDocument object and inputing the line into it -

$tmpNode = new DOMDocument;
$tmpNode->loadHTML($string);

but I can't figure out how to get the the useful nodes out of it to then append as children in the document I'm creating.

Any tips on how to do this?

--- End Message ---
--- Begin Message ---
While PHP has a lot of nice features, it also has some traps which I am forever 
falling
into. One which I find particularly hard to understand is how mixed mode 
comparisons work.
For instance 

$string =  'elephant';
If($string == 0) returns true;
If($string != 0) returns false;
If($string === 0) returns false; 

I know that in this case I should use 'If($string == '')', but I still manage 
to forget.
Can anyone explain clearly why comparing a string with zero gives this 
apparently
anomalous result?

--- End Message ---
--- Begin Message ---
Clancy wrote:

> While PHP has a lot of nice features, it also has some traps which I
> am forever falling into. One which I find particularly hard to
> understand is how mixed mode comparisons work. For instance
> 
> $string =  'elephant';
> If($string == 0) returns true;
> If($string != 0) returns false;
> If($string === 0) returns false;
> 
> I know that in this case I should use 'If($string == '')', but I still
> manage to forget. Can anyone explain clearly why comparing a string
> with zero gives this apparently anomalous result?

I'm not certain, but I suspect it's because the interpreter attempts to
convert "elephant" to an integer first. 


/Per


-- 
Per Jessen, Zürich (-0.6°C)


--- End Message ---
--- Begin Message ---
Clancy schreef:
> While PHP has a lot of nice features, it also has some traps which I am 
> forever falling
> into. One which I find particularly hard to understand is how mixed mode 
> comparisons work.
> For instance 
> 
> $string =  'elephant';
> If($string == 0) returns true;
> If($string != 0) returns false;
> If($string === 0) returns false; 
> 
> I know that in this case I should use 'If($string == '')', but I still manage 
> to forget.
> Can anyone explain clearly why comparing a string with zero gives this 
> apparently
> anomalous result?

it's called auto-casting (or auto-typecasting) and it's 'by design'
... welcome to the world of dynamic typing.

try this to see it working:

php -r '
var_dump((integer)"elephant");
var_dump((float)"elephant");
var_dump((bool)"elephant");
var_dump((array)"elephant");
var_dump((object)"elephant");
var_dump((bool)(integer)"elephant");
'

you can avoid auto-casting if needed, in a variety of ways:

php -r '
$foo = "elephant";
if (!empty($foo))
        echo "$foo found!\n";
if (strlen($foo))
        echo "$foo found!\n";
if (is_string($foo) && strlen($foo))
        echo "$foo found!\n";
if ($foo !== "")
        echo "$foo found!\n";
if ($foo === "elephant")
        echo "$foo found!\n";
'

those last 2 show how to use 'type-checked' equality
testing.

> 


--- End Message ---
--- Begin Message ---
> Can anyone explain clearly why comparing a string
> with zero gives this apparently anomalous result?

<?php
$string = 'oleyphoont';
var_dump((int)$string, $string == 0, $string == 1);
?>

--- End Message ---
--- Begin Message ---
Have you tried with a mouse?

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il

א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת
ا-ب-ت-ث-ج-ح-خ-د-ذ-ر-ز-س-ش-ص-ض-ط-ظ-ع-غ-ف-ق-ك-ل-م-ن-ه‍-و-ي
А-Б-В-Г-Д-Е-Ё-Ж-З-И-Й-К-Л-М-Н-О-П-Р-С-Т-У-Ф-Х-Ц-Ч-Ш-Щ-Ъ-Ы-Ь-Э-Ю-Я
а-б-в-г-д-е-ё-ж-з-и-й-к-л-м-н-о-п-р-с-т-у-ф-х-ц-ч-ш-щ-ъ-ы-ь-э-ю-я
ä-ö-ü-ß-Ä-Ö-Ü

--- End Message ---
--- Begin Message ---
I am having a problem with spl_object_hash() creating non unique hashes.

I understand with MD5 it is possible to have the same hash for
different strings but this doesn't seem like that problem.

I have created a simple test below, should I report this as a bug or
am I doing something wrong.

PHP 5.2.8 (extensions all disabled)
Win XP SP3
Apache 2.2.11

<?php
class a1 {}
$obi = new a1();
echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
class a2 {}
$obi = new a2();
echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
class a3 {}
$obi = new a3();
echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
unset($obi);
class a4 {}
$obi = new a4();
echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
?>

Outputs:

a1: 09d264fcececf51c822c9382b40e3edf
a2: 45701af64172cbc2a33069dfed73fd07
a3: 09d264fcececf51c822c9382b40e3edf
a4: 09d264fcececf51c822c9382b40e3edf

Thanks let me know how I should proceed with this.

--- End Message ---
--- Begin Message ---
'Twas brillig, and Nick Cooper at 12/02/09 11:38 did gyre and gimble:
Outputs:

a1: 09d264fcececf51c822c9382b40e3edf
a2: 45701af64172cbc2a33069dfed73fd07
a3: 09d264fcececf51c822c9382b40e3edf
a4: 09d264fcececf51c822c9382b40e3edf

Thanks let me know how I should proceed with this.

Confirmed here. I get different hashes, but the same pattern:

a1: 79eff28a9757f1a526882d82fe01d0f3
a2: 4cec55f17563fe4436164f438de7a88c
a3: 79eff28a9757f1a526882d82fe01d0f3
a4: 79eff28a9757f1a526882d82fe01d0f3

PHP 5.2.9RC1 with Suhosin-Patch 0.9.6.3 (cli) (built: Feb  9 2009 16:00:42)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies

You should report the bug:
http://bugs.php.net/

Col

--

Colin Guthrie
gmane(at)colin.guthr.ie
http://colin.guthr.ie/

Day Job:
  Tribalogic Limited [http://www.tribalogic.net/]
Open Source:
  Mandriva Linux Contributor [http://www.mandriva.com/]
  PulseAudio Hacker [http://www.pulseaudio.org/]
  Trac Hacker [http://trac.edgewall.org/]


--- End Message ---
--- Begin Message ---
Nick Cooper schreef:
> I am having a problem with spl_object_hash() creating non unique hashes.
> 
> I understand with MD5 it is possible to have the same hash for
> different strings but this doesn't seem like that problem.
> 
> I have created a simple test below, should I report this as a bug or
> am I doing something wrong.

your making an incorrect assumption about spl_object_hash(),
using unset($obi) tells the engine that there are no more
references to the given object that was stored in it ... this
implies the relevant internal object pointer is free to be reused.

> PHP 5.2.8 (extensions all disabled)
> Win XP SP3
> Apache 2.2.11
> 
> <?php
> class a1 {}
> $obi = new a1();
> echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
> class a2 {}
> $obi = new a2();
> echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
> class a3 {}
> $obi = new a3();
> echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
> unset($obi);
> class a4 {}
> $obi = new a4();
> echo get_class($obi).': '.spl_object_hash($obi).'<br/>';
> ?>
> 
> Outputs:
> 
> a1: 09d264fcececf51c822c9382b40e3edf
> a2: 45701af64172cbc2a33069dfed73fd07
> a3: 09d264fcececf51c822c9382b40e3edf
> a4: 09d264fcececf51c822c9382b40e3edf
> 
> Thanks let me know how I should proceed with this.

to quote the user notes in the manual:

"This is sufficient to guarantee that any two objects simultaneously 
co-residing in memory will have different hashes.
Uniqueness is not guaranteed between objects that did not reside in memory 
simultaneously,"

note also that the hash given is only valid for the life of the request, the 
hash is not unique accross concurrent
requests and the hash value is dependent on the order the objects were created.

php -r 'class Test {}; $t1 = new Test; $t2 = new Test; 
var_dump(spl_object_hash($t1), spl_object_hash($t2));'
php -r 'class Test {}; $t1 = new Test; $t2 = new Test; 
var_dump(spl_object_hash($t2), spl_object_hash($t1));'
php -r 'class Test {}; $t2 = new Test; $t1 = new Test; 
var_dump(spl_object_hash($t1), spl_object_hash($t2));'
php -r 'class Test {}; $t0 = new Test; $t1 = new Test; $t2 = new Test; 
var_dump(spl_object_hash($t1), spl_object_hash($t2));'

use something else if you need unique hashes for objects not
simultaneously existing.

> 


--- End Message ---
--- Begin Message ---
Colin Guthrie schreef:
> 'Twas brillig, and Nick Cooper at 12/02/09 11:38 did gyre and gimble:
>> Outputs:
>>
>> a1: 09d264fcececf51c822c9382b40e3edf
>> a2: 45701af64172cbc2a33069dfed73fd07
>> a3: 09d264fcececf51c822c9382b40e3edf
>> a4: 09d264fcececf51c822c9382b40e3edf
>>
>> Thanks let me know how I should proceed with this.
> 
> Confirmed here. I get different hashes, but the same pattern:
> 
> a1: 79eff28a9757f1a526882d82fe01d0f3
> a2: 4cec55f17563fe4436164f438de7a88c
> a3: 79eff28a9757f1a526882d82fe01d0f3
> a4: 79eff28a9757f1a526882d82fe01d0f3
> 
> PHP 5.2.9RC1 with Suhosin-Patch 0.9.6.3 (cli) (built: Feb  9 2009 16:00:42)
> Copyright (c) 1997-2009 The PHP Group
> Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
> 
> You should report the bug:
> http://bugs.php.net/

it's not a bug. RTFM

> 
> Col
> 


--- End Message ---

Reply via email to