问一个循环输出字符串的问题
for ($i=1; $i<=1000000000; $i++ ){ echo "非法操作!".$i;}
如果循环的次数巨大,达到了使浏览器崩溃的地步,
那么对WEB服务器有影响吗?有多大影响?
回复讨论(解决方案)
PHP是运行在服务器端的,所以你上面的语句是在服务器端执行完毕得到结果后再传送到客户端浏览器上。
你所说的让浏览器崩溃,无非是循环够多输出字符数够多,这样的话,估计先崩溃的是服务器。
原来是这样的啊
那如果换成js是不是就不会对服务器造成影响
不会对WEB服务器有影响
web服务器有个输出缓冲区,一旦满了就会向用户输出
经常为了满足某些实时需要,将缓冲区设为0,那就更没有影响了
不会对WEB服务器有影响
web服务器有个输出缓冲区,一旦满了就会向用户输出
经常为了满足某些实时需要,将缓冲区设为0,那就更没有影响了
这个是针对对PHP代码还是JS代码?
那如果换成js是不是就不会对服务器造成影响
JS运行在客户端,确实和服务器没关系了,问题是你这种需求想干嘛?
服务器不崩溃,客户端就不会崩溃
不会对WEB服务器有影响
web服务器有个输出缓冲区,一旦满了就会向用户输出
经常为了满足某些实时需要,将缓冲区设为0,那就更没有影响了
这个是针对对PHP代码还是JS代码? 当然是 php!
因为你问的是WEB服务器

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 simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:
