No, I can't from top of my head, but I think we can have this option possible if needed because there might come such situation.
Note that PHP is NOT eating up that memory right away, but on demand.
Here is how Drupal is dealing with this setting:
in settings.php
If Drupal is already installed, you can edit sites/default/settings.php. This method will affect only the site using this file.
Locate the PHP settings section and add the following line at the end of that section:
ini_set('memory_limit', '64M');
I am proposing:
1. Default value in startup.php stays 50M
2. If there is setting in config.php (ie. called MemoryLimit) specific - it's value will be used in startup.php instead of default one. This will allow to adjust (not just increase) memory limit without committing the code, plus on per sever basis (if website is running off multiple Web servers)
3. Add new Tag which will allow to set this value on per Page/template basis
Keep in mind that we are not just talking about Increasing Memory Limit - these options are for controlling it so it can be changed UP or DOWN!
I have this makes more sense.
DA