當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FireCake::fb方法代碼示例

本文整理匯總了PHP中FireCake::fb方法的典型用法代碼示例。如果您正苦於以下問題:PHP FireCake::fb方法的具體用法?PHP FireCake::fb怎麽用?PHP FireCake::fb使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FireCake的用法示例。


在下文中一共展示了FireCake::fb方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: groupEnd

 /**
  * Convenience wrapper for GROUPEND messages
  * Closes a group block
  *
  * @internal param string $label Label for group (optional)
  * @return void
  */
 public static function groupEnd()
 {
     FireCake::fb(null, null, 'groupEnd');
 }
開發者ID:cc2i,項目名稱:calibrephp,代碼行數:11,代碼來源:FireCake.php

示例2: groupEnd

 /**
  * Convenience wrapper for GROUPEND messages 
  * Closes a group block
  *
  * @param string $label Label for group (optional)
  * @access public
  * @return void
  */
 function groupEnd()
 {
     FireCake::fb(null, null, 'groupEnd');
 }
開發者ID:TomMaher,項目名稱:umambo,代碼行數:12,代碼來源:fire_cake.php

示例3: testIncorrectMessageType

 /**
  * Test defaulting to log if incorrect message type is used
  *
  * @return void
  */
 public function testIncorrectMessageType()
 {
     FireCake::setOptions(array('includeLineNumbers' => false));
     FireCake::fb('Hello World', 'foobared');
     $this->assertEqual($this->firecake->sentHeaders['X-Wf-1-1-1-1'], '30|[{"Type":"LOG"},"Hello World"]|');
 }
開發者ID:carriercomm,項目名稱:professional-inventory-and-billing-system,代碼行數:11,代碼來源:FireCakeTest.php

示例4: krumo

 /**
  * A more ajax and user friendly way to var_dump.
  * Use instead of pr()
  *
  * @param mixed $var
  * @param bool $useFireCakeOutsideViews
  */
 static function krumo($var, $options = array())
 {
     $options = array('fireCake' => true, 'debug' => true);
     if ($options['debug'] && !Configure::read()) {
         return;
     }
     if ($options['fireCake'] && empty(Sl::getInstance()->view) && class_exists('FireCake')) {
         return FireCake::fb($var);
     }
     // force Pheme to keep the whitespace and line breaks
     echo "<!--{!preserveWhitespace}-->";
     App::import('vendor', 'krumo', array('file' => 'krumo/class.krumo.php'));
     return krumo::dump($var);
 }
開發者ID:sandulungu,項目名稱:StarLight,代碼行數:21,代碼來源:sl.php


注:本文中的FireCake::fb方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。