FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » String Question
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: String Question [message #172801 is a reply to message #172798] Wed, 02 March 2011 21:56 Go to previous messageGo to previous message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma:
Senior Member
On 02/03/11 21:14, Patrick wrote:
> On 3/2/2011 3:59 PM, Denis McMahon wrote:
>> On 02/03/11 20:38, Patrick wrote:
>>
>>> yet when I do a strlen $errval is 64 and $pglerr is 65.
>>
>> Have a more detailed look at the string contents, maybe looking at eg
>> the ascii codes for each char in the string. function strbits below
>> might help:
>>
>> <?php
>>
>> function strbits($str) {
>> $i = strlen($str);
>> $a = array();
>> while (--$i) $a[$i] = ord(substr($str,$i,1));
>> return $a;
>> }
>>
>> ?>
>>
>> Rgds
>>
>> Denis McMahon
>
> Thanks. I came to that same conclusion and found that there are 2 spaces
> between "ERROR:" and "duplicate" in the second string and only one in
> the first. No way you could ever tell that from the output on the screen.

Ah, you were viewing the error message in a browser and then pasting it
into text? Browsers do things like 's/\s*/ /'

Rgds

Denis McMahon
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: genuine adsence accounts Big offer
Next Topic: fgetcsv -- No error reporting?
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sat Nov 23 21:26:09 GMT 2024

Total time taken to generate the page: 0.04829 seconds