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


PHP a::show方法代碼示例

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


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

示例1: testArrayShow

    function testArrayShow()
    {
        $this->assertEqual(a::show($this->arr, false), '<pre>Array
(
    [cat] =&gt; miao
    [dog] =&gt; wuff
    [bird] =&gt; tweet
)
</pre>');
    }
開發者ID:o-github-o,項目名稱:jQuery-Ajax-Upload,代碼行數:10,代碼來源:array.php

示例2: ini_get

</dd>
    
  <dt>Installed Snippets</dt>
  <dd><?php 
a::show(dir::read(c::get('root.snippets')));
?>
</dd>

  <dt>Your config files</dt>
  <dd><?php 
a::show(dir::read(c::get('root.site') . '/config'));
?>
</dd>
    
  <dt>Your entire config</dt>
  <dd><?php 
a::show(c::get());
?>
</dd>

  <dt>PHP Error Reporting</dt>
  <dd><?php 
echo ini_get('display_errors') ? 'yes' : 'no';
?>
</dd>

</ul>

</body>

</html>
開發者ID:nilshendriks,項目名稱:kirbycms,代碼行數:31,代碼來源:troubleshoot.php

示例3: basename

    $dir = $root . '/' . $name;
    if (is_dir($dir)) {
        $skipped[] = basename($dir);
        continue;
    }
    dir::make($dir);
    $content = implode("\n\n" . '----' . "\n\n", $output);
    $file = $dir . '/' . $template;
    f::write($file, $content);
}
putmessage('Exported ' . $n . ' articles to ' . $root . '<br /><br />');
if (!empty($errors)) {
    putmessage(count($errors) . ' article(s) could not be imported<br /><br />');
}
if (!empty($skipped)) {
    putmessage('The following folders have been skipped, because they already existed:' . a::show($skipped, false));
}
/**
 * IXR - The Inutio XML-RPC Library
 *
 * @package IXR
 * @since 1.5
 *
 * @copyright Incutio Ltd 2002-2005
 * @version 1.7 (beta) 23rd May 2005
 * @author Simon Willison
 * @link http://scripts.incutio.com/xmlrpc/ Site
 * @link http://scripts.incutio.com/xmlrpc/manual.php Manual
 * @license BSD License http://www.opensource.org/licenses/bsd-license.php
 */
/**
開發者ID:rkallensee,項目名稱:kirbycms-extensions,代碼行數:31,代碼來源:wordpress.php

示例4: dump

function dump($var)
{
    return a::show($var);
}
開發者ID:sdvig,項目名稱:kirbycms,代碼行數:4,代碼來源:helpers.php

示例5: validate

 /**
  * Checks if all required keys are in the 'raw' event array. Throws an
  * exception if one is missing.
  *
  * @param array $event a 'raw' event array containing all fields
  */
 private static function validate($event)
 {
     $missingKeys = a::missing($event, self::$requiredKeys);
     if ($missingKeys) {
         $message = "Event creation failed because of the following missing " . "required fields:\n" . a::show($missingKeys, false);
         throw new Exception($message, 1);
     }
 }
開發者ID:igorqr,項目名稱:kirby-extensions,代碼行數:14,代碼來源:Event.php


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