search
HomeBackend DevelopmentPHP TutorialPHP 的极限在哪里?

回复内容:

在与C PHP能够实现最简洁的web程序,用Fat-Free Framework

<span class="x">$f3=require('path/to/base.php');</span>
<span class="x">$f3->route('GET /',</span>
<span class="x">    function() {</span>
<span class="x">        echo 'Hello, world!';</span>
<span class="x">    }</span>
<span class="x">);</span>
<span class="x">$f3->run();</span>
当你需要考虑一门语言极限的时候,通常是你把它用在了不适合的地方。管理学上有句谚语,世上没有傻瓜,只有被用错了位置的聪明人~ 这两天遇到一个问题, 就是php的异步处理, php本身是没有异步处理机制的, 想用的话只能自己模拟, 而且调试巨麻烦
解决方法大概有几个, 第一个就是调用脚本处理, 第二个模拟浏览器单开一个页面进程.

其实@harry 说的并不完全对, 现在的web面临的状况越来越多, 既然选择了一门语言, 就必须面对这门语言的弱点, 很希望php的下个版本能够解决异步问题, 虽然可能性不大 关于语言的攻击是最无聊的,通常入门不久的人讨论的最多。语言只是一门工具,我们再使用一门工具的时候要看看它使用起来效率如何,需要多久的开发时间,维护成本,相关人员招聘成本等等综合考虑。 选择一个合适自己的即可. 从从业人员数量,技术以及文档成熟度,开发效率这几个方面来看,PHP 目前均占主流水平。

兵器有千万种,用什么兵器不代表就是高手,而是取决于你自己的基本功,长期锻炼积累的内力等等。 当你需要处理长时间的业务,并发业务(多进程、多线程)时,就要考虑用其他语言实现了。 1. 大规模运算
2. 异步处理/多线程
3. 计划任务
不过这些都能克服~~~ 真需要解决上面这些问题,PHP估计也不会当真后端了吧 对1L表示赞同,好的编程和做事习惯是一样的,要取长补短,没有最好的语言,虽然我们可以想法设法的、绞尽脑汁的用php做出各种牛叉的功能,但是,其实可能换一种语言做这个部分,可能更加的高效和简单,所以,更加高效的解决问题最重要,php有他自身的优点和不足,个人觉得,他执行绝对是很快的,但是这个快的代价是程序员来做优化,因为他只是“一字不差”的翻译,所以同个功能,很多人写出的效果却不同,但,因为他实在太快了,这些微小的差异如果不是很大的访问或数据量下是很难看出来的,所以他的瓶颈应该是在数据库,更加高效的设置数据库更加的重要,但是这个缺点却和php本身无关。因为php在开发出来的时候其实并不是作为一门语言,而是一种解决问题的手段。更像是一个插件一样! 我个人认为,php处理速度和他本身机制,动态编译有关。极限方面的话,处理复杂的大数据量应该算是一个方面吧!也因此php很适合web编程! php宣称效率最好,但实际生产过程中却存在效率随php代码复杂度增加,其速度以几何级数降低,到底高到哪里呢?
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

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-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

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.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

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' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

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

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

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:

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

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

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

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

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

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.