123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="utf-8" lang="utf-8">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
- <title>数组辅助函数 - CodeIgniter 中文手册|用户手册|用户指南|Wiki文档</title>
- <link rel="shortcut icon" href="http://codeigniter.org.cn/user_guide/../images/design/favicon.ico" type="image/x-icon" />
- <link rel="stylesheet" type="text/css" media="all" href="../userguide.css" />
- <link rel="search" href="http://codeigniter.org.cn/user_guide/../CodeIgniterSearch.xml" type="application/opensearchdescription+xml" title="CodeIgniter 搜索"/>
- <link rel="canonical" href="http://codeigniter.org.cn/user_guide/helpers/array_helper.html" />
- <script type="text/javascript" src="../nav/mootools.js-ver=20130324.js"></script>
- <script type="text/javascript" src="../nav/mootools-more.js-ver=20130324.js"></script>
- <script type="text/javascript" src="../nav/nav.js-ver=20130324.js"></script>
- <script type="text/javascript" src="../nav/user_guide_menu.js-ver=20130324.js"></script>
- <meta name="robots" content="all" />
- <meta name="author" content="ExpressionEngine Dev Team" />
- <meta name="description" content="CodeIgniter 中文手册, CodeIgniter 用户指南, CodeIgniter User Guide, Wiki 文档" />
- </head>
- <body>
- <!-- START NAVIGATION -->
- <div id="nav">
- <div id="nav_inner">
- <script type="text/javascript">create_menu('../');</script>
- </div>
- </div>
- <script type="text/javascript">_setNavigation();</script>
- <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="切换目录" alt="切换目录" /></a></div>
- <div id="masthead" class="clearfix">
- <div class="topbar-hd"><h1>CodeIgniter 用户指南 版本 2.2.0</h1></div>
- <div class="topbar-tip">编辑文档、查看近期更改请 <a href="#">登录</a> 或 <a href="#">注册</a> <a href="#">找回密码</a></div> <div id="breadcrumb_right"><a href="../toc.html">目录页</a></div>
- </div>
- <!-- END NAVIGATION -->
- <!-- START BREADCRUMB -->
- <table cellpadding="0" cellspacing="0" border="0" style="width:100%">
- <tr>
- <td id="breadcrumb">
- <a href="#" target="_blank">CodeIgniter 中国首页</a> ›
- <a href="../index.html">用户指南首页</a> › 数组辅助函数 </td>
- <td id="searchbox">
- <form method="get" action="http://www.google.com.hk/search" target="google_window">
- <input type="hidden" name="client" value="pub-0176846097796333"></input>
- <input type="hidden" name="forid" value="1"></input>
- <input type="hidden" name="ie" value="UTF-8"></input>
- <input type="hidden" name="oe" value="UTF-8"></input>
- <input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.org.cn/user_guide/" />
- 搜索用户指南
- <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />
-
- <input type="submit" class="submit" name="sa" value="Go" />
- </form>
- </td>
- </tr>
- </table>
- <!-- END BREADCRUMB -->
- <div style="clear:both;text-align:right;padding: 6px 40px 0 0;">
- <a href="#" target="_blank">查看原文</a>
- </div>
- <!--<br clear="all" />--><!-- START CONTENT -->
- <div id="content">
- <h1>数组辅助函数</h1>
- <p>数组辅助函数的文件涵盖了一些用于辅助数组操作的函数。</p>
- <h2>装载本辅助函数</h2>
- <p>本辅助函数的装载通过如下代码完成:</p>
- <p><code>$this->load->helper('array');</code></p>
- <p>可用的函数如下:</p>
- <h2>element()</h2>
- <p>获取数组中的元素。本函数测试数组的索引是否已设定并含有数值。如果已设有数值则返回该数值,否则返回 FALSE,或任何你设定的默认数值(函数第三个参数)。范例:</p>
- <p><code> $array = array('color' => 'red', 'shape' => 'round', 'size' => '');<br />
- <br />
- // 返回 "red"<br />
- echo element('color', $array);<br />
- <br />
- // 返回 NULL<br />
- echo element('size', $array, NULL); </code></p>
- <h2>random_element()</h2>
- <p>根据提供的数组,随机返回该数组内的一个元素。使用范例:</p>
- <p><code>$quotes = array(<br />
- "I find that the harder I work, the more luck I seem to have. - Thomas Jefferson",<br />
- "Don't stay in bed, unless you can make money in bed. - George Burns",<br />
- "We didn't lose the game; we just ran out of time. - Vince Lombardi",<br />
- "If everything seems under control, you're not going fast enough. - Mario Andretti",<br />
- "Reality is merely an illusion, albeit a very persistent one. - Albert Einstein",<br />
- "Chance favors the prepared mind - Louis Pasteur"<br />
- );<br />
- <br />
- echo random_element($quotes);</code></p>
- <h2>elements()</h2>
- <p>Lets you fetch a number of items from an array. The function tests whether each of the array indices is set. If an index does not exist
- it is set to FALSE, or whatever you've specified as the default value via the third parameter. Example:</p>
- <p><strong>试译:</strong>该函数从一个数组中取得若干元素。该函数测试(传入)数组的每个键值是否在(目标)数组中已定义;如果一个键值不存在,该键值所对应的值将被置为FALSE,或者你可以通过传入的第3个参数来指定默认的值。例如:</p>
- <code>
- $array = array(<br />
- 'color' => 'red',<br />
- 'shape' => 'round',<br />
- 'radius' => '10',<br />
- 'diameter' => '20'<br />
- );<br />
- <br />
- $my_shape = elements(array('color', 'shape', 'height'), $array);<br />
- </code>
- <p>The above will return the following array:</p>
- <p><strong>试译:</strong>上面的程序将返回下面的数组:</p>
- <code>
- array(<br />
- 'color' => 'red',<br />
- 'shape' => 'round',<br />
- 'height' => FALSE<br />
- );
- </code>
- <p>You can set the third parameter to any default value you like:</p>
- <p><strong>试译:</strong>你可以将第3个参数设为任何你想要的默认值:</p>
- <code>
- $my_shape = elements(array('color', 'shape', 'height'), $array, NULL);<br />
- </code>
- <p>The above will return the following array:</p>
- <p><strong>试译:</strong>上面的程序将返回下面的数组:</p>
- <code>
- array(<br />
- 'color' => 'red',<br />
- 'shape' => 'round',<br />
- 'height' => NULL<br />
- );
- </code>
- <p>This is useful when sending the <kbd>$_POST</kbd> array to one of your Models. This prevents users from
- sending additional POST data to be entered into your tables:</p>
- <p><strong>试译:</strong>这(种方法)在将 <kbd>$_POST</kbd> 数组传入你的模型时非常有用。通过这种方式可以防止用户发送的额外的 POST 数据进入你的数据表:</p>
- <code>
- $this->load->model('post_model');<br />
- <br />
- $this->post_model->update(elements(array('id', 'title', 'content'), $_POST));
- </code>
- <p>This ensures that only the id, title and content fields are sent to be updated.</p>
- <p><strong>试译:</strong>这样保证了只有 id, title 和 content 字段被发送以进行更新。</p><p> </p>
- <div id="Contributors">
- 翻译贡献者:
- canglan, Hex, zhaosusen</div>
- <div id="DocDate">
- 最后修改: 2012-02-05 23:45:13</div>
- </div>
- <!-- END CONTENT -->
- <div id="footer">
- <p>
- 上一个主题: <a href="../libraries/javascript.html">Javascript 类</a> · <a href="#top">页首</a>
- · <a href="../index.html">用户指南首页</a> · 下一个主题: <a href="captcha_helper.html">CAPTCHA 辅助函数</a> </p>
- <p><a href="#">CodeIgniter</a> · 版权所有 © 2006-2013 · <a href="#">Ellislab, Inc.</a></p>
- <p>中文化: <a href="#">CodeIgniter 中国</a> · 制作: Hex · 版本: 1.30 · 鸣谢: 子非鱼</p>
- </div>
- </body>
- </html>
|