打印

[PHP教程] php避免重复申明函数的解决方案

php避免重复申明函数的解决方案


   我们知道,在php中不能使用相同的函数名定义函数两次,如果这样,程序执行的时候就会出错。

   而我们会把一些常用的自定义函数提取出来,放到一个include文件中,然后别的文件就可以通过include或require来调用这些函数,下面是一个例子:

<?php
//   file name test1.inc.php

function fun1()
{
// do any fun1
}

function fun2()
{
// do any fun2
}
?>

<?
//   file name test2.inc.php

require("test1.inc.php");

function fun1()
{
// do any fun1
}

function fun3()
{
// do any fun3
}
?>

<?
//   file name test.php
//可能需要包含其他的文件
require("test1.inc.php");
require("test2.inc.php");
// do any test
?>

   在test1.inc.php和test2.inc.php中同时定义了fun1这个函数,我虽然知道这两个函数实现的功能完全相同,但是我并不确定,或者说我不想明确的知道,一个函数是不是在某个“包”(include)中定义了,另外的一个问题是,我们不能包含一个包两次,但是我并不想在这里花过多的时间进行检查,上面的例子,执行test.php会产生很多错误。



   在c语言中,提供了预定义功能可以解决这个问题:

#ifndef __fun1__
#define __fun1__
// do any thing
#endif

   php并不提供这样的机制,但是我们可以利用php的灵活性,实现和c语言的预定一同样的功能,下面举例如下:

<?php
//   file name test1.inc.php

if ( !isset(____fun1_def____) )
{
____fun1_def____ = true;
  function fun1()
{
   // do any fun1
}
}
if ( !isset(____fun2_def____) )
{
____fun2_def____ = true;
function fun2()
{
   // do any fun2
}
}
?>

<?
//   file name test2.inc.php

require("test1.inc.php");

if ( !isset(____fun1_def____) )
{
____fun1_def____ = true;
function fun1()
{
   // do any fun1
}
}
if ( !isset(____fun3_def____) )
{
____fun3_def____ = true;
function fun3()
{
   // do any fun3
}
}
?>

<?
//   file name test.php
//可能需要包含其他的文件

require("test1.inc.php");
require("test2.inc.php");
// do any test
?>

   现在,我们不再怕同时包含一个包多次或定义一个函数多次会出现的错误了。这样直接带给我们的好处是,维护我们的程序变得比较轻松了。



TOP

返回顶部
AYBlue

Processed in 0.048171 second(s), 7 queries.

当前时区 GMT+8, 现在时间是 2009-1-8 12:03 京ICP备06054220号

清除 Cookies - 联系我们 - 163K.com - Archiver - WAP