<?php function testfunc(){ echo '我是自定义函数'; } if(!function_exists('testfunc')){ function testfunc(){ echo '我是自定义函数'; } } testfunc(); ?>