关于怎么获取循环语句中的值 的问题求解答
for($i = 0; $i <= 2; $i++){ $i;} echo $i;
这样为什么不能获取获取循环的出来的值 就这能获取最后一条 修改成这样的话
for($i = 0; $i <= 2; $i++){ echo $i;}
这样就能获取全部得值 但是有的语句不想放到循环语句中 有什么办法能获取到循环语句中的值吗
回复讨论(解决方案)
在循环语句中用个变量(数组或字符)保存每次循环的值,在循环外面调用。
没保存起来,当然每次都是获取最后一个。
楼主这是你的需求的逻辑有问题
语句放在循环外,这没问题,但是循环外的语句又如何用循环内特定某一次循环的数值呢? 你如何判断该用哪一次?
楼主这是你的需求的逻辑有问题
语句放在循环外,这没问题,但是循环外的语句又如何用循环内特定某一次循环的数值呢? 你如何判断该用哪一次?
我也是觉得 逻辑有问题 其实我想在循环语句外获取循环语句内边的所以值 但是没什么思路和代码不知道要怎么写
在循环语句中用个变量(数组或字符)保存每次循环的值,在循环外面调用。
这个方法可行 但是具体的代码要怎么写 求高手写出代码 让菜鸟参考一下
for($i = 0; $i <= 2; $i++){ $t[] = $i;} echo join(',', $t);
楼主这是你的需求的逻辑有问题
语句放在循环外,这没问题,但是循环外的语句又如何用循环内特定某一次循环的数值呢? 你如何判断该用哪一次?
我也是觉得 逻辑有问题 其实我想在循环语句外获取循环语句内边的所以值 但是没什么思路和代码不知道要怎么写
那你先想好逻辑和流程,编程其实就是把逻辑转化为代码...也可以说详细点大家可以帮你梳理下逻辑

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

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.
