當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。