ID: 35427
User updated by: tomas_matousek at hotmail dot com
Reported By: tomas_matousek at hotmail dot com
-Status: Feedback
+Status: Open
Bug Type: Strings related
Operating System: *
PHP Version: 5.1.0
New Comment:
File string.c, line 4744:
while (isalpha(*p) || *p == '\'' || (*p == '-' && isalpha(*(p+1))) ||
(char_list && ch[(unsigned char)*p]))
should be:
while (isalpha(*p) || *p == '\'' || (*p == '-' && (isalpha(*(p+1) ||
(char_list && ch[(unsigned char)*p])))) || (char_list && ch[(unsigned
char)*p]))
Previous Comments:
------------------------------------------------------------------------
[2005-11-28 21:50:24] [EMAIL PROTECTED]
Really, where? Do you have a patch to fix this?
------------------------------------------------------------------------
[2005-11-28 21:27:28] tomas_matousek at hotmail dot com
No, I needn't. str_word_count("bar-var") returns 1, so '-' is
considered as a part of the word if it is followed by 'word'
character.
See the source code. The bug is clear there.
------------------------------------------------------------------------
[2005-11-28 09:47:30] [EMAIL PROTECTED]
Yes, you need to add the - in the list.
------------------------------------------------------------------------
[2005-11-28 09:29:10] tomas_matousek at hotmail dot com
Read again the full doc! Don't stop at the middle.
RTFM:
"charlist
A list of additional characters which will be considered as 'word' "
------------------------------------------------------------------------
[2005-11-28 01:04:24] [EMAIL PROTECTED]
RTFM: "For the purpose of this function, 'word' is defined as a locale
dependent string containing alphabetic characters, which also may
contain, but not start with "'" and "-" characters."
------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/35427
--
Edit this bug report at http://bugs.php.net/?id=35427&edit=1