php - 打开/关闭功能以打印调试消息

时间:2012-05-01 12:09:42

标签: php debugging function printing comments

我对编程很陌生,当我开发我的程序时,我使用一个简单的策略来调试它:我编写程序来打印调试消息,因为它操作重要的语句,例如

function foo1($number)
{
  //foo_print("I am function foo1({$number}). <br/>");
  //foo_print("I am going to increase 'count' by {$number}. <br/>");

  $GLOBALS["count"] = $GLOBALS["count'] + $number;

  //foo_print("Now 'count' = {$GLOBALS["count"]}, I finished my task, BYE BYE. <br/>");

}

function isFoo($number)
{
  //foo_print("I am function isFoo({$number}). <br/>");
  //foo_print("I am checking if the number < 3 or not, if so, it is Foo, if not, it is not Foo. <br/>");
  if($number <= 3)
  {
    //foo_print("Found that number = {$number} <= 3, I return true, BYE BYE. <br/>");
    return true;
  }

  //foo_print("Found that number = {$number} > 3, I return false, BYE BYE. <br/>");
  return false;
}

我将它们称为调试消息,但是,如您所见,它们实际上是描述程序在每一行上执行的操作的完整注释。我正在编写函数foo_print()以在我调试程序时将它们打印出来。并在实际使用中评论它们。

在实际运行模式和调试模式之间切换时,不是逐行插入和删除注释符号'//',而是使用函数foo_print来完成工作:它可以设置为打开或关闭

define(FOO_PRINT, 1)
function foo_print($message)
{
  if(FOO_PRINT) print $message;
  // if FOO_PRINT == 0 then do nothing.
}

但我认为这种方法无效,每次打印邮件前都必须检查FOO_PRINT。

我的问题是以下一个或两个

  • 当我不想使用它时,我能告诉php忽略我的foo_print()函数吗?

  • 也许,我不应该使用foo_print函数,而是使用'//'符号以纯注释样式编写消息,然后告诉php解释器在调试模式下打印这些注释消息。我能这样做吗?

我认为,除了调试简便之外,这种方法的优势在于它可以帮助我在以后的日子里再次看到它时理解该程序。 (对我来说这很长很复杂,我相信我很快就会忘记它。)

我发现现在使用高级IDE和调试工具来开发我的程序非常复杂。我相信其中一些高级调试工具可以做类似于我想要的东西,但我已经尝试了PHP-eclipse和xdebug一个星期,它让我无处可去。非常感谢你。

2 个答案:

答案 0 :(得分:3)

您可以定义两个函数,其中一个输出调试数据而另一个不输出。然后使用变量名来包含要调用的函数的名称,并通过调用变量中的函数来进行调试。像这样:

function debug_print($data) {
    echo $data;
}
function debug_none($data) {
}

$debug = 'debug_print';
$debug('Testing one'); // This prints out 'Testing one'

$debug = 'debug_none';
$debug('Testing two'); // This doesn't print out anything

如果您这样做,请不要忘记将global $debug添加到任何想要使用该功能的功能。

编辑:还有一种更加面向对象的方式来实现相同的结果。您可以定义一个接口并为其编写几个实现,允许您选择在运行时使用哪个。

$debugmode = true;

interface Debugger {
    public function out($data);
}

class EchoDebugger implements Debugger {
    public function out($data) {
        echo $data;
    }
}

class NullDebugger implements Debugger {
    public function out($data) {
        // Do nothing
    }
}

if($debugmode)
    $debugger = new EchoDebugger();
else
    $debugger = new NullDebugger();

$debugger->out('This will be output if $debugmode is true');

答案 1 :(得分:-1)

没有萌芽,

没有这样的事情,你必须每次都定义一个条件。

这不能在php的代码中完成