This has got my mind twisted. Obviously PHP can't handle something ahead of time before it even knows there is a problem.
I've got this in the header of the document:
<? $site = new core();
register_shutdown_function(shutdown);
echo $site->insert_to_header(); ?>
Then further down, purposely put:
echo $test;
To create a warning. This gets taken to shutdown();, that looks like this:
class core {
function shutdown() {
$a = error_get_last();
if ($a == null) {
echo "No errors";
} else {
core::insert_to_header_cache('<link rel="stylesheet" href="core.css" type="text/css" />');
core::insert_to_body_cache('<div class="error-handler"><h3>Error!</h3>
<br/>Error type: <strong>' . $a[type] . '</strong>
<br/>Error message: <strong>' . $a[message] . '</strong>
<br/>Located in: <strong>' . $a[file] . '</strong>
<br/>Line: <strong>' . $a[line] . '</strong>
</div>');
}
}
//TODO Teleport variables to here, without doing that beforehand, this whole thing is broken :(
function insert_to_header_cache($insertion ='') {
$headercache += $insertion . '/n';
return true;
}
function insert_to_body_cache($insertion ='') {
$bodycache += $insertion . '/n';
return true;
}
function insert_to_header() {
global $headercache;
echo $headercache;
return true;
}
function insert_to_body() {
global $bodycache;
return $bodycache;
}
}
My problem is, how can I get my insert_to_header_cache function to output back up into the header when it's already past that point?
Please keep in mind I realize calling global $bodycache and $headercache isn't working, but this isn't the issue here. Echoing anything in advance here doesn't work. because of order, I know that much.
Thanks in advance,
Evan Harrison
echos within your controller, instead calling all of your functions to output each block only at the very end, once your processing is finished. – Jared Farrish Dec 11 '11 at 13:51