search
HomeBackend DevelopmentPHP TutorialPHP foreach 如何判断为数组最后一个最高效?

现在用的方法是
这样做似乎很笨. 请问有什么简单的写法?

回复内容:

我有另一个想法: 既然你要的是在最后一个的时候执行一些别的, 也就是要做些特别的动作.
那我认为, 那最后一个元素不应该放在原来的数组列表里, 而应该单独提取出来, 于是有了如下的方法:
$last = array_pop($list);
foreach($list as $v) do_common($v);
//特殊动作
do_special($last); 直接使用end($array)就可以取到最后一个值,可以使用php的指针函数 PHP foreach 如何判断为数组最后一个最高效?
<span class="cp"><?php</span>
<span class="sd">/**</span>
<span class="sd"> * Created by PhpStorm.</span>
<span class="sd"> * User: huage.org</span>
<span class="sd"> * Date: 2014-09-06</span>
<span class="sd"> * Time: 13:43</span>
<span class="sd"> */</span>
<span class="nv">$array1</span><span class="o">=</span><span class="k">array</span><span class="p">(</span><span class="mi">1</span><span class="p">,</span><span class="mi">2</span><span class="p">,</span><span class="mi">3</span><span class="p">,</span><span class="mi">4</span><span class="p">);</span>
<span class="nv">$array2</span><span class="o">=</span><span class="k">array</span><span class="p">(</span><span class="s2">"林志玲"</span><span class="p">,</span><span class="s2">"刘涛"</span><span class="p">,</span><span class="s2">"隋唐"</span><span class="p">,</span><span class="s2">"朱茵"</span><span class="p">);</span>
<span class="nv">$array3</span><span class="o">=</span><span class="k">array</span><span class="p">(</span><span class="s2">"刘涛"</span><span class="p">,</span><span class="mi">2</span><span class="p">,</span><span class="s2">"朱茵"</span><span class="p">,</span><span class="mi">1</span><span class="p">,</span><span class="s2">"林志玲"</span><span class="p">);</span>
<span class="k">echo</span> <span class="nb">end</span><span class="p">(</span><span class="nv">$array1</span><span class="p">);</span><span class="c1">//将数组的内部指针指向最后一个单元,适用于所有数组</span>
<span class="k">echo</span> <span class="s2">"<br>"</span><span class="p">;</span>
<span class="k">echo</span> <span class="nb">end</span><span class="p">(</span><span class="nv">$array2</span><span class="p">);</span>
<span class="k">echo</span> <span class="s2">"<br>"</span><span class="p">;</span>
<span class="k">echo</span> <span class="nb">end</span><span class="p">(</span><span class="nv">$array3</span><span class="p">);</span>
$list = array('a', 'b', 'c');
foreach($list as $k=>$v) {
if($v != end($list)) {
// 不是最后一项
} else {
// 最后一项
}
} 把count($list)提到循环外面可以提高一下效率。 你确定你这个能实现?
$i是从0开始的,count($list)比$i大1,你觉得会输出“最后一个”么?$i初始值等于1吧。
对你这些代码有点建议,应该能提高效率.
把count($list)赋给另外一个值,如:$len, 把这个放在循环外面。判断条件就成了if($i != $len).
你可以这样判断:
$len = count($list);
$lastVal = end($list);
if($lastVal == $list[$len - 1]) {
echo '最后一个';
}
?> $count = count($result)-1;
foreach ( $result as $key => $v ) {
if(empty($v)) continue;
$sql .= "('";
$sql .= implode ( "','", $v );
$sql .= "')";
if($key $sql .= ",";
}
} 1 数组值不重复就判断 $val==end($array)
2 1楼说的换个思路处理
3 感觉代码比较简洁
$fruit = array('a' => 'apple', 'b' => 'banana', 'c' => 'cranberry');
reset($fruit);
while (list($key, $val) = each($fruit)) {
echo "$key => $val\n";
if(!current($fruit))echo '最后一个';
}

高不高效还真是个问题
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.