extract function, EXTR_PREFIX_SAME option prefixes empty strings
| Bug #29038 | extract function, EXTR_PREFIX_SAME option prefixes empty strings | ||||
|---|---|---|---|---|---|
| Submitted: | 2004-07-06 22:20 UTC | Modified: | 2004-07-11 20:25 UTC | ||
| From: | tomas_matousek at hotmail dot com | Assigned: | |||
| Status: | Closed | Package: | Arrays related | ||
| PHP Version: | 5.0.0RC3 | OS: | WinXP | ||
| Private report: | No | CVE-ID: | None | ||
[2004-07-06 22:20 UTC] tomas_matousek at hotmail dot com
Description:
------------
The extract() function with EXTR_PREFIX_SAME option specified prefixes variable name which is an empty string, although such variable doesn't exists in the scope where extract is called.
Manual says:
"EXTR_PREFIX_SAME
If there is a collision, prefix the variable name with prefix."
And this is not true for an empty string.
A bug is possibly here (!!!):
-- array.c ----------------------------
case EXTR_PREFIX_SAME:
if (!var_exists)
smart_str_appendl(&final_name, var_name, var_name_len);
/* break omitted intentionally */
case EXTR_PREFIX_ALL:
if (final_name.len == 0 !!!) { ...
break;
---------------------------------------
Reproduce code:
---------------
function f()
{
extract(array("" => 1),EXTR_PREFIX_SAME,"prefix");
print_r(get_defined_vars());
{
f();
Expected result:
----------------
Array
(
)
Actual result:
--------------
Array
(
[prefix_] => 1
)
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2004-07-07 00:11 UTC] pollita@php.net
[2004-07-07 10:43 UTC] tomas_matousek at hotmail dot com
[2004-07-11 20:25 UTC] andrey@php.net