关于php循环输出解决方案
关于php循环输出
- PHP code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->$list=""; if(!$car['name']){ $list= '没有任何信息!'; }else{ $i=1; foreach($car['name'] as $nm){ $list.=' '.$nm['xm'].' '; $i++; } } print_r($list);
以上代码中输出数据:李强、李强、李强、鸿飞
是否能实现判断输出的数据中结果中如果“李强”重复,则强制改名为李强1、李强2、李强2、鸿飞?
------解决方案--------------------
计数呀
- PHP code
$car['name'] = array( array('xm' => '李强'), array('xm' => '李强'), array('xm' => '李强'), array('xm' => '鸿飞'), ); $list=""; if(!$car['name']){ $list= '没有任何信息!'; }else{ $i=1; $buf = array(); foreach($car['name'] as $nm){ if(! isset($buf[$nm['xm']])) $buf[$nm['xm']] = ''; $list .= "\n" . $nm['xm'] . ($buf[$nm['xm']]++) . "\n"; $i++; } } print_r($list); <br><font color="#e78608">------解决方案--------------------</font><br>
- PHP code
$list=""; $car = array('name'=>array(0=>array('xm'=>'liming'),1=>array('xm'=>'bill'), 2=>array('xm'=>'bill'), 3=>array('xm'=>'bill'))); if(!$car['name']){ $list='Nothing'; }else{ $i = 1; foreach($car['name'] as $nm) { if(strstr($list,$nm['xm']) && $i == 1) { $list = str_replace($nm['xm'],$nm['xm'].$i,$list); $list .= $nm['xm'].($i+1); $i++; }else{ if(strstr($list,$nm['xm'])) { $list .= $nm['xm'].($i+1); $i++; }else{ $list .= $nm['xm']; } } } } print_r($list); <div class="clear"> </div>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

List operation //Insert a value from the head of the list. $ret=$redis->lPush('city','guangzhou');//Insert a value from the end of the list. $ret=$redis->rPush('city','guangzhou');//Get the elements in the specified range of the list. 0 represents the first element of the list, -1 represents the last element, and -2 represents the penultimate element. $ret=$redis->l

Title: Example of using the Array.Sort function to sort an array in C# Text: In C#, array is a commonly used data structure, and it is often necessary to sort the array. C# provides the Array class, which has the Sort method to conveniently sort arrays. This article will demonstrate how to use the Array.Sort function in C# to sort an array and provide specific code examples. First, we need to understand the basic usage of the Array.Sort function. Array.So

Both are true wireless headphones released by Sony. If we want to buy them, how do we choose between Sony linkbuds and xm4? In fact, their positioning is completely different. One focuses on appearance design, and the other focuses on noise reduction. How to choose between Sony linkbuds and xm4: Answer: Sony linkbuds and xm4 are two completely different headphones. If you like the compact appearance and personalized design, choose linkbuds. Friends who need powerful active noise reduction headphones are recommended to choose xm4. Comparison between Sony linkbuds and xm4: 1. First of all, linkbuds is an indoor headset with almost no noise reduction ability. 2. The WF-1000XM4 has professional multi-level noise reduction capabilities, which is almost the strongest in the same price range.

1: JSONArray to ListJSONArray string to List//Initialize JSONArrayJSONArrayarray=newJSONArray();array.add(0,"a");array.add(1,"b");array.add(2,"c") ;Listlist=JSONObject.parseArray(array.toJSONString(),String.class);System.out.println(list.to

Method to convert xm to mp3 format: 1. Open the "Format Factory" software and click the "Add File" button on the mp3 function interface; 2. In the opened interface, double-click the xm file in the file manager; 3. Click " Start" button to convert to mp3 format.

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

When programming in PHP, we often need to merge arrays. PHP provides the array_merge() function to complete array merging, but when the same key exists in the array, this function will overwrite the original value. In order to solve this problem, PHP also provides an array_merge_recursive() function in the language, which can merge arrays and retain the values of the same keys, making the program design more flexible. array_merge

Example In this example, we first look at the usage of list.sort() before continuing. Here, we have created a list and sorted it in ascending order using sort() method - #CreatingaListmyList=["Jacob","Harry","Mark","Anthony"]#DisplayingtheListprint("List=",myList)#SorttheListsinAscendingOrdermyList .sort(
