<?php
if (!function_exists('name_of_function')) {
function name_of_function() {
// do something
}
}
?>But this really isn't a good idea. Try to put the function definitions into a separate file if that's feasible.
Jason
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

