In your case, MF, the ini is what you want to change.
I believe a good understanding of default values is a better solution than isset. isset() is ok, but makes for messy code in my opinion. I prefer to check for NOT on my variables. Also, unless you're very careless (and that's easy to do with php), declaring your vars in php isn't necessary.
To check for null or empty string, or 0 or not set, use if(!$var)
to check for null, use is_null($var)
Most languages require you to declare your variables, but I love php because you don't need to.
Tom