当前位置: 首页>>代码示例>>PHP>>正文


PHP Test::a方法代码示例

本文整理汇总了PHP中Test::a方法的典型用法代码示例。如果您正苦于以下问题:PHP Test::a方法的具体用法?PHP Test::a怎么用?PHP Test::a使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Test的用法示例。


在下文中一共展示了Test::a方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: a

<?php

require_once 'vendor/autoload.php';
use PHPixie\Debug;
$debug = new Debug();
Debug::log("test");
Debug::log(array(3));
class Test
{
    public function a($string, $num)
    {
        //Note how the trace
        //Will contain function parameters
        Debug::logTrace();
    }
}
$t = new Test();
$t->a("test", 5);
//The values will be printed
//only after this call
$debug->dumpLog();
开发者ID:phpixie,项目名称:debug,代码行数:21,代码来源:logging.php

示例2: a

$debug = new Debug();
Debug::dump("Array dump:");
Debug::dump(array(1));
Debug::dump("Short array dump:");
Debug::dump(array(1), true);
$object = (object) array('t' => 1);
Debug::dump("Object dump:");
Debug::dump($object);
Debug::dump("Short object dump:");
Debug::dump($object, true);
Debug::dump("Dump trace with parameters");
class Test
{
    public function a($string)
    {
        $array = array(1, 2);
        $this->b($string, $array);
    }
    public function b($string, $array)
    {
        $object = (object) array('t' => 1);
        $this->c($string, $array, $object);
    }
    public function c()
    {
        Debug::trace();
    }
}
$t = new Test();
$t->a("test");
开发者ID:phpixie,项目名称:debug,代码行数:30,代码来源:dumping.php

示例3: a

//Pretty printing exceptions
try {
    throw new \Exception("test");
} catch (\Exception $e) {
    $debug->exceptionMessage($e);
}
echo "\n-------\n";
//Register handlers to pretty print
//all exception automatically.
//Logged items will also be printed
$debug->registerHandlers();
class Test
{
    public function a($string)
    {
        $array = array(1, 2);
        $this->b($string, $array);
    }
    public function b($string, $array)
    {
        $object = (object) array('t' => 1);
        $this->c($string, $array, $object);
    }
    public function c()
    {
        substr();
    }
}
$test = new Test();
$test->a("pixie");
开发者ID:phpixie,项目名称:debug,代码行数:30,代码来源:exceptions.php


注:本文中的Test::a方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。