Windows: XP Pro (SP3)
Bug (Code Explorer)
Inside a class when a method is defined with arguments that contain a default value using an array with defined members, code explorer stops displaying any list information for methods, functions, and variables. Arguments of this type are valid in PHP.
Example PHP Class
Code: Select all
class Myclass
{
public function parseString($str, $delimiters = array(',', '-', '\'', '/'))
{
// code
}
}