循环嵌套有关问题。好像不难啊小弟我都搞晕了
循环嵌套问题。好像不难啊,我都搞晕了。
有4个类目:
类目1:(一,二)
类目2:(A,B,C,D)
类目3:(a,b,c,d)
类目4:(甲,乙,丙,丁)
想要达到下面的效果,怎么循环?表要怎么建?一句SQL语句好像肯定搞不定吧?
一Aa,一Ab,一Ac,一Ad,
一A甲,一A乙,一A丙,一A丁,
一Ba,一Bb,一Bc,一Bd,
一B甲,一B乙,一B丙,一B丁,
一Ca,一Cb,一Cc,一Cd,
一C甲,一C乙,一C丙,一C丁,
一Da,一Db,一Dc,一Dd,
一D甲,一D乙,一D丙,一D丁,
一a甲,一a乙,一a丙,一a丁,
一b甲,一b乙,一b丙,一b丁,
一c甲,一c乙,一c丙,一c丁,
一d甲,一d乙,一d丙,一d丁,
二Aa,二Ab,二Ac,二Ad,
二A甲,二A乙,二A丙,二A丁,
二Ba,二Bb,二Bc,二Bd,
二B甲,二B乙,二B丙,二B丁,
二Ca,二Cb,二Cc,二Cd,
二C甲,二C乙,二C丙,二C丁,
二Da,二Db,二Dc,二Dd,
二D甲,二D乙,二D丙,二D丁,
二a甲,二a乙,二a丙,二a丁,
二b甲,二b乙,二b丙,二b丁,
二c甲,二c乙,二c丙,二c丁,
二d甲,二d乙,二d丙,二d丁,
------解决方案--------------------
- PHP code
<?php $arr_1=array('一','二'); $arr_2=array('A','B','C','D'); $arr_3=array('a','b','c','d'); $arr_4=array('甲','乙','丙','丁'); $temp=array(); foreach($arr_2 as $v) foreach(array_merge($arr_3,$arr_4) as $sv){ $temp[]=$v.$sv; } foreach($arr_3 as $v){ foreach($arr_4 as $sv) $temp[]=$v.$sv; } foreach($arr_1 as $v){ foreach($temp as $sv) $arr[]=$v.$sv; } print_r(array_chunk($arr,4)); <div class="clear">

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

1. The difference between Iterator and foreach is the polymorphic difference (the bottom layer of foreach is Iterator) Iterator is an interface type, it does not care about the type of collection or array; both for and foreach need to know the type of collection first, even the type of elements in the collection; 1. Why is it said that the bottom layer of foreach is the code written by Iterator: Decompiled code: 2. The difference between remove in foreach and iterator. First, look at the Alibaba Java Development Manual, but no error will be reported in case 1, and an error will be reported in case 2 (java. util.ConcurrentModificationException) first

The steps for PHP to determine the number of the foreach loop: 1. Create an array of "$fruits"; 2. Create a counter variable "$counter" with an initial value of 0; 3. Use "foreach" to loop through the array, and Increase the value of the counter variable in the loop body, and then output each element and their index; 4. Output the value of the counter variable outside the "foreach" loop to confirm which element the loop reaches.

The temp folder is our temporary file storage location. The system will save temporary files to this folder. If there are too many temporary files, especially when the temp folder is on the system disk, it is likely to affect the system running speed. We can solve the problem by changing the temp location. Let’s take a look below. Tutorial on changing the location of win7temp 1. First, right-click "Computer" and open "Properties" 2. Click "Advanced System Settings" on the left 3. Click "Environment Variables" below 4. Select "temp" and click "Edit" 5. Then change Just change the "Variable Value" to the path that needs to be changed.

In computers, temp means "temporary folder", which contains many temporary files; its function is to temporarily save the user's work results in the application to prevent losses caused by accidents. Deleting temp files can free up hard disk storage space, but it will be slower to open the application for the first time after deletion.
![Internal error: Unable to create temporary directory [Resolved]](https://img.php.cn/upload/article/000/000/164/168171504798267.png?x-oss-process=image/resize,m_fill,h_207,w_330)
Windows system allows users to install various types of applications on your system using executable/setup files. Recently, many Windows users have started complaining that they are receiving an error named INTERNALERROR:cannotCreateTemporaryDirectory on their systems while trying to install any application using an executable file. The problem is not limited to this but also prevents the users from launching any existing applications, which are also installed on the Windows system. Some possible reasons are listed below. Run the executable to install without granting administrator privileges. An invalid or different path was provided for the TMP variable. damaged system

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
![How to Fix Processor Thermal Trip Error in Windows 11/10 [Fix]](https://img.php.cn/upload/article/000/000/164/168169038621890.png?x-oss-process=image/resize,m_fill,h_207,w_330)
Most of the devices, such as laptops and desktops, have been heavily used by young gamers and coders for a long time. The system sometimes hangs due to application overload. This forces users to shut down their systems. This mainly happens to players who install and play heavy games. When the system tries to boot after force shutdown, it throws an error on a black screen as shown below: Below are the warnings detected during this boot. These can be viewed in the settings on the event log page. Warning: Processor thermal trip. Press any key to continue. ..These types of warning messages are always thrown when the processor temperature of a desktop or laptop exceeds its threshold temperature. Listed below are the reasons why this happens on Windows systems. Many heavy applications are in

temp is a temporary folder. In the path "C:\Documents and Settings\Administrator\Local Settings\", many temporary files are placed here, including favorites, temporary files for browsing web pages, editing files, etc.
