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


PHP util::array_first_key方法代碼示例

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


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

示例1: menu

 /**
  * Output a menu..
  *
  */
 public function menu(Twig_Environment $env, $identifier = "")
 {
     global $app;
     $menus = $app['config']['menu'];
     if (!empty($identifier) && isset($menus[$identifier])) {
         $name = strtolower($identifier);
         $menu = $menus[$identifier];
     } else {
         $name = strtolower(util::array_first_key($menus));
         $menu = util::array_first($menus);
     }
     foreach ($menu as $key => $item) {
         $menu[$key] = $this->menu_helper($item);
         if (isset($item['submenu'])) {
             foreach ($item['submenu'] as $subkey => $subitem) {
                 $menu[$key]['submenu'][$subkey] = $this->menu_helper($subitem);
             }
         }
     }
     // echo "<pre>\n" . util::var_dump($menu, true) . "</pre>\n";
     echo $env->render('_sub_menu.twig', array('name' => $name, 'menu' => $menu));
 }
開發者ID:LeonB,項目名稱:site,代碼行數:26,代碼來源:twig_bolt.php

示例2: getTaxonomy

 /**
  * Get the taxonomy for one or more units of content, return the array with the taxonomy attached.
  *
  * @param array $content
  * 
  * @return array $content
  */
 protected function getTaxonomy($content)
 {
     $tablename = $this->prefix . "taxonomy";
     $ids = util::array_pluck($content, 'id');
     if (empty($ids)) {
         return $content;
     }
     // Get the contenttype from first $content
     $contenttype = $content[util::array_first_key($content)]->contenttype['slug'];
     $taxonomytypes = array_keys($this->config['taxonomy']);
     $query = sprintf("SELECT * FROM {$tablename} WHERE content_id IN (%s) AND contenttype=%s AND taxonomytype IN ('%s')", implode(", ", $ids), $this->db->quote($contenttype), implode("', '", $taxonomytypes));
     $rows = $this->db->fetchAll($query);
     foreach ($rows as $key => $row) {
         $content[$row['content_id']]->setTaxonomy($row['taxonomytype'], $row['slug']);
     }
 }
開發者ID:LeonB,項目名稱:site,代碼行數:23,代碼來源:storage.php

示例3: test_array_first_key

 public function test_array_first_key()
 {
     $test = array('a' => array('a' => 'b', 'c' => 'd'));
     $this->assertEquals('a', util::array_first_key(util::array_get($test, 'a')));
 }
開發者ID:rubymatrix,項目名稱:utilphp,代碼行數:5,代碼來源:util.php


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