search
HomeBackend DevelopmentPHP Tutorial有人说,熟练掌握了 if 和 while,就等于掌握了 PHP 语言,这句话有道理吗?为什么?

回复内容:

Bullshit. 这和说『熟练掌握了 do 和 have 就等于掌握了英语』一样纯属扯淡。 “熟练掌握了 if 和 while”和“会用if while”是不一样的,而很多回答都把“熟练掌握”偷换成了“会用”。

首先,if while即代表了选择结构和循环结构,这两者加上顺序结构(无特定关键词),三者是组成任何算法的基石(语言无关),或者说,任何一种算法,都可以用这三种逻辑结构来实现,这是早已被严谨证明的。熟悉掌握了这三者,也就有了大半江山。

其次,熟练掌握绝不意味着仅懂得它们的基本语法格式,这只是个开始,熟练掌握它们在各种情形下的使用,以及由此展开所涉及的各种算法、相关经验技巧等,范围相当之广。if while这两个词在这个层面上,不再是两个语法,而是代表了对整个语言的熟练运用。

这俩词,看起来很短,实际上却很长。 我觉得没有道理。PHP里面东西很多的。 恩 这个也许只能说基本语法,这才算学好PHP的第一步吧!
个人认为学习PHP分几个层次,具体如下:
1.基本语法
这个可以说是练功过程中的马步,基础必须扎实啊。扎实了才可以往下看其他的东西。 2.PHP+MYSQL
PHP与数据库的最佳拍当,最好有时间还可以学习一下他的另两个拍当,Linux和apache。
3.面向对象
这个更是非常重要的一个东西,也许这些在基本语法中已经涉及过了。但是面向对象远远不是单纯的定义几个类,定义几个方法这么简单。这是一种思想。有时候通篇都是函数,但是却是面向对象的很不错的实践,这个说的是开源CMS drupal。

4.设计模式
学习这个东西,可以在单纯实现你代码的基础上,提高你的代码的可读性,可扩展性。可以更好的和其他人合作。
5.模板引擎
有名的有Smarty,可以看看官方网站的手册smarty.net/或者到一些论坛下载手册。使用模板引擎,可以实现PHP与前台界面之间的分离。
6.二次开发
像大多数论坛,博客都是二次开发的。有discuz!,Wordpress,phpwind等。可以写一些插件或者主题,同时贡献给开源组织,供大家学习讨论。
7.用框架开发
如:ZendFramework,YiiPHP,CI等。PHP框架确实是个好东西,可以极大的减少重复的工作量,而且框架往往都是汇集了N多程序员的智慧,是个不可多得的学习材料。
8.研读别人的代码 你如果第5步用的是Smarty的模板引擎,那你现在可以读读Smarty的代码(前提,第3,4步做得比较好),之后是读第6步里面的
9.开发自己真正成熟的框架或PHP应用程序。这格式后写出来的程序就不像第2步中写的那样,因为你要吸取一些开源的程序框架的优点。这时候你程序的性能和可扩展性就会极大的提高。
9.你会发现有些东西是程序还不能解决的。
10研究更底层的技术,这时候就不是单纯的PHP程序员了。
这些东西是来源于网上看到的一篇文章,加入了一些自己的理解,感觉还是蛮有道理的。


判断和循环是每种语言的精髓、也是用到的最多的知识、但是并不是学到了全部、这样说总是感觉有点瞧不起php的赶脚 题主说的 只能算入门。

只考虑实现功能的程序员是非常恐怖的。他会在代码中埋下N多坑。性能问题。维护问题。安全问题。逻辑问题等等。
引用一下某牛说的 好程序员定义
我觉得好程序无非三点:
1、性能优秀,性能是程序很重要的一个特性,无论是办公软件、杀毒软件、游戏还是web几乎所有的程序都是很关注性能的,没人喜欢慢吞吞的软件,我们学的计算机原理,算法,数据结构,各种xx性能优化,各种xx调优,各种高性能xxx,各种xx编程艺术,各种架构,分布式也好,并行计算也好最终目的是什么?就是为了良好的性能,说白了就是为了程序效率
2、容易维护:程序不是一成不变的,维护性也很重要,什么代码整洁之道啊,程序员素养啊,大道至简啊,软件工程啊,设计模式,重构,REST,AOP,IOC,面向对象,UML,文档驱动开发,等等各种方法各种概念,其实目的无非就是让程序代码更优美,结构更合理,改起来更方便,以后更好维护。
3、鲁棒性好:作为好程序来讲,BUG一定要少,这是必须的,对于用户的各种合理不合理操作都要有良好的应对方案,我们学习各种测试技术、各种编程思想,安全技术,密码学、各种高可用、各种主从架构,各种备份技术等等都是为了让我们的程序保证良好的运行状态,不论是用户的误操作还是恶意攻击,无论是天灾还是人祸我们的程序都能从容面对。
我写了八年代码 用while的时候 一只手都数的过来。。。。 多谢邀请
if while 等判断语句在很多编程语言里面十分常用,但是不代表掌握了它们就算是掌握了这门语言,这仅仅是基础而已
个人认为这句话大概是想表明php简单易学而已,不过也有误导人的意思 如果只是语言本身,算有道理。

但是,现在的高级语言(如PHP、Java、C#、Ruby)更重要的是语言之外的东西,如库、模式、调优等等 对于熟悉FP的人来说, 这句话是对的, 其它的不知道.
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.

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

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.