For 500, just put a bug in your code.
<?php throw new Exception('Nooooooooooooooo!'); ?>
The php script will raise an exception, resulting in a regular apache 500 error. [Update: Note that this will only result in an apache error if the php init setting display_errors is set to zero. In most development configurations, this is not the case. In most production configurations, this is the case.]
For 404, I think the best you can do is redirect to a non-existent page. Not exactly the same thing, but might do for your purposes:
<?php header("Location: /i-dont-think-therefore-i-am-not"); ?>
In most browsers, the users won't actually see the redirect, they will just get silently and quickly redirected to a non-existent page, resulting in a regular apache 404 error.
[Update: Note that setting the response code via header() (or some other way) will not result in the standard apache error document. It will return that response code with your own output (so you can have a custom error document). If you want the apache error documents, you have to get apache to return them (or forge them).]
/usr/share/httpd/error/HTTP_INTERNAL_SERVER_ERROR.html.varfor me) and exit the PHP script. But I'm having a huge problem: how would you go about processing the .html.var file? In Apache it's set asAddHandler type-map varbut I can't figure out anything that would be useful in PHP. – animuson Dec 31 '11 at 10:01header()with that as output. That's probably best unless you have a compelling reason not to. – Ben Lee Dec 31 '11 at 10:13