Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 现在学PHP用什么哪个版本好?

现在学PHP用什么哪个版本好?

Jun 23, 2016 pm 02:04 PM

5.2 or 5.4?


回复讨论(解决方案)

两个都可以。

php 5.5 都快要正式发行了
php 开发组织建议你升级到 php 5.3.22 或 php 5.4.12

我实测过:同样的环境,同一个程序(包括 php.ini 都不做改变),php 5.4.12 要比 php 5.3.6 快 30%

以上情况,供你选择时参考

听说PHP6 不准备开发了?

求版主推荐个PHP的编辑器

是吗?那就不要学 php 了
不能像我们一样,上了马下不来了

是吗?那就不要学 php 了
不能像我们一样,上了马下不来了
不是,我觉得PHP很有前途。

一直不明白php到底是什么一个语言啊

5.3或者5.4都还好,相对稳定

5.3 5.4都还很好,你要编译器的话,就用zend studio吧

刚开始学不用管是5.2还是5.4,总之是php5就成

刚开始学不用管是5.2还是5.4,总之是php5就成
谢谢这位仁兄,你0点还没睡,希望注意身体。

谢归谢,大不能照他说的做
php5.2中可以无警告的使用即将被废止的函数,学习他只会有害无益

5.4,因为5.4后有很多新的语法和特性。

我都是集成安装包的呢,5.2.6的还

版本越新,稳定性,安全性越好,不过新版本难免有bug或不常见的问题,建议用5.2 5.3,这样有什么问题,你网上也好找答案哦。

新版的比较好./..

都可以。但是若使用,用最新的稳定版。旧版迟早因为安全问题而升级的。

围观学习,新人用哪个上手快

我用5.2,很稳定。
新版本一般不会有太大的变化,而且有些新功能,平时开发也用不上啊。
找个稳定版的用就可以!!

当前可用版本是PHP 5.4 (5.4.13) PHP 5.3 (5.3.23) PHP 5.2 (5.2.17)
PHP 5.5还有测试阶段
5.4注意语法和之前的版本不太一样。

5.2好,稳定。。。

就用5.4的版本吧,还好的

谢归谢,大不能照他说的做
php5.2中可以无警告的使用即将被废止的函数,学习他只会有害无益
版主,给我们新手推荐个编辑器吧,比较好用的!

版主,给我们新手推荐个编辑器吧,比较好用的! 记事本!
这样就能让你注意到每一个细节

引用 26 楼 u010044579 的回复:
版主,给我们新手推荐个编辑器吧,比较好用的!记事本!
这样就能让你注意到每一个细节
这个答案 

基本上对于基本的开发,
 5.2和5.4是无感的。不过推荐还是5.4.必竟是方向嘛。

Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 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 APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 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 Tests Simplified HTTP Response Mocking in Laravel Tests Mar 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 CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 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

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

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 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

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

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

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 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:

See all articles