LPMJ Example 5-9 (Click on the icon to view the source for copy and pasting)
<?php
if (function_exists("array_combine"))
{
	echo "Function exists";
}
else
{
	echo "Function does not exist - better write our own";
}
?>