I encountered a somewhat similar scenario just recently and after some thought I arrived at the conclusion that the problem is not with the function or class being used but with the use itself. Parameter values such as
<a href="http://foo.com/!FOO!/">check with foo</a>
would be better implemented in a way that only the value of the href is the value of the parameter. Example:
warnings.1.href = "http://foo.com/!FOO!/"
warnings.1.text = "check with foo"
This is because the parameter values should only contain values that are bound to change (from instance to instance). In your case, the anchor tags are better left in the html itself, and not in the .ini configuration file. This does not only keep your configuration file lightweight, but it also keeps it clean because of the separation of concerts wherein the HTML code should be in the HTML and the configuration values in the configuration file.
So yeah, there's no need to switch PHP versions or adding parameters to the parse_ini_file function (since doing so would be a hack to the Zend_Config_Ini class, which would be better done as an official patch if necessary).