Another example of PHP lunacy

Guess what the output of the following code is:

<?php
error_reporting(E_ALL|E_STRICT);
session_write_close();

Answer: Nothing. PHP lets you try to close a session that was never opened and doesn't even murmur a warning.