关于PHP未来发展的N个严肃思考
我很悲愤,大过年的,也没人散个分。。。长此以往,让用PHP的孩子们怎么混。。。
祝大家新年快乐,
男phper钱多得象代码里的$,艳福多得象代码里的.
女phper钱多得象代码里的$,老公的艳福少得象代码里的bug.........咳咳,这个bug怎么总是消灭不光,去了旧的,来了新的..
先来的多分点,新年假期坚持上PHP论坛的值得表扬。。。。
什么,标题党?!难道新年祝福这个不是很严肃的事情?
哦哦,要发技术贴,对对,技术....
-----------------------------------------------------------
PHP5.6.0火热开发中,已放出alpha1版本,据可靠消息(手册),新增功能有:
常量表达式初始化:
const ONE = 1;
const TWO = ONE * 2;
可变参数函数简易写法"
function f($req, $opt = null, ...$params)
新调试模块phpdbg
上传文件可超过2G
......
更多内容敬请期待
注:回复里讨论分割线下方内容的不得分。。。。
回复讨论(解决方案)
楼猪新年快乐,红包拿来
楼主新年快乐
楼主新年快乐
正在迟疑,到底学的什么呢?
祝大家新年快乐,马上有所有!
又开始上班了,新年快乐,新的一年收入多多
哈哈,楼主新年快乐,大家新年快乐,一切又恢复正常了。
新年快乐
新年快乐 2014开始了
马年行大运,话说马年是我大学里最重要的一年哦,祝福各位也祝福我马年有所作为吧。
马上解决所有问题~~
新年快乐!又开始上班鸟!
目前所有的产品能在PHP5.3上面正常运行已经很不错了。
很少有某个产品说能在PHP5.4上面运行,更不用说PHP5.5、PHP5.6这些高版本了。
楼猪。新年快乐。
nice
新年快乐..
话说普及新版本不知道要等个几年...我现在还用的5.3
版本并非越高越好.
其实,我觉得PHP用起来挺好的,但维护起来就有点头疼了,而且漏洞什么的着实让人无语。
PHP好处我觉得是门槛低,而且修改什么的也方便。但不足之处,是觉得结构太松散了,代码是否可维护完全取决于开发人员的自律,但正像刚才说的,门槛低,所以这个自律就纯粹是摆设了。
对于快速的web开发,PHP的确是不错的选择,但对于后期维护以及扩展等,随着项目的复杂度上升,如果先期没做好规划以及为扩展等留下余地的话,那基本就是悲剧了。
但对于J2EE的话,虽然说是企业级的产品,但说实话,如果真的用过,就知道这东西实在是过度设计~~写了一堆东西,可能真正涉及业务逻辑的就一行代码。然而,PHP的话,又是另一种情况,太灵活了,如果没有严格的代码规范,基本很难做到协同开发或者后期维护等等~因为你可以把业务逻辑写在页面上,也可以把你的代码放在其他的php页面上然后导入。对于Java,即使写得再烂,至少不会跳出这个约束,还能知道到哪里去找代码。PHP么~~呵呵~~
当然,我只是随便说说而已,PHP的易用性还是值得肯定的。
新的一年,好好奋斗
楼猪。新年快乐。
我是来拿红包的...
还在用的老版本,php孩纸们新年快乐
新年快乐
2014票子马上天天有
祝大家新年快乐,马上有所有!
码农更关心学PHP到底有没有前途
晕,标题党啊
新年快乐,红包红包
楼主新年快乐 红包红包~~~
新年快乐!红包
很好的资源,对我很有用,收获很大,谢谢

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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











In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.
