search
HomeBackend DevelopmentPHP Tutorial成为PHP程序员的正确姿势

利益相关:以下的所有文字都是仅代表个人观点,不代表全组织的利益。

本人就是一大三狗,自学PHP时间已经快两年了,感觉自己还是一个入门级的选手。说说自己是如何一步步走过来的。

1. 官方文档

对,我还是坚持那个观点:80%的代码问题都可以通过仔细阅读文档解决。

所以如果你要学习PHP,那么PHP的官方文档你绝对是避免不了的。你可能在刚刚开始的时候是跟着某个老师的网上教学视频来学习的,这种学习编程的方式是极好。但是不管这么看视频,你最后还是得回到官网文档,你不用每个函数都被下来,但对于一些常用的函数和核心概念建议保存到大脑的内存区,保证他们可以在需要的时候随时调出来用;一些不太常用的函数你完全可以只记得大概,不太确定的时候回来查看就是了。但不管是哪种内容,你都得仔细阅读其中的内容,包括其中的示例代码。

2. PHP THE RIGHT WAY

我不知道其他学习PHP的人是怎么走过来的,我不知道他们有没有发现原来还有这么棒的PHP学习资料。但我相信如果一个人仔细地将PHP THE RIGHT WAY 的内容阅读完了并掌握了其中的大部分知识,这个PHP工程师是很有前途的。因为这对于一个刚参加工作的PHP工程师来说,这有可能就是一月8K和一个月5K的区别了。

3. 多编写网站

编程说到底其实也就是一门手艺,就对于智商差不多的程序员来说,技艺的高超程度往往就在于练的多少了。既然PHP天生就是用来创建Web应用的,那么毫无疑问,多写代码,将自己觉得有意思的点子变成一个个你用代码筑造的网站。没有别的,就是为了多练,这过过程可以让你接触到更多的代码问题,一旦你都解决了这些问题,你的经验值又提高了。

我这么久以来写过好几个站点,印象深刻的有以下几个:

  • 写了一个众筹方式买东西的站点。就是上面的东西可以多人一起购买,然后轮着用,比如一本书,十个人一起买了这本书,这几个人就可以共享他们的书了。这个印象深刻主要是当时都是原生的PHP写的,从中学到了数据库,http,url传参,跳转等。
  • 第二个就是一个yii 1.1完全仿照SF来写了一个问答社区。
  • 第三个就是学院的后台,也是yii写的,这个主要学到如何Ajax上传文件,如何在应用中集成Ueditor
  • 第四个就是一个粉丝订阅明星演唱会信息的服务站点。如果用户在这里订阅相关的感兴趣的明星,一旦有演唱会要举办的时候,我们就发一封邮件给用户,提醒用户购买门票等。这个站点我已经转向了Laravel。
  • 最后这个就是近期一直在等备案下来的Blog,之前一直都是用第三方的blog平台,这次干脆根据自己的文章需求写了一个自己用的Blog。
  • 其实在写这些东西的过程中,你解决的问题越多,你的能力提升越多。

    4. 上手框架

    写代码确实是一门手艺,但是我们在掌握了足够的基本知识之后,我们考虑的问题应该是从怎么创建一个应用上升到怎么更快地写出一个更好的应用。这时候,框架的作用就体现出来了,它不仅可以提高你的开发效率,而且想Laravel之类的框架简直可以让你写代码变得跟说话一样自然,舒服。好好了解框架的MVC是怎么实现,好好看看框架的文档时怎么,好好想想如果我要扩展这个框架,怎样才是最好的模式?基本上遵循:

    学习框架 --> 使用框架 --> 扩展框架 --> 贡献框架源码

    这样的思路去学习一个框架(虽然还做不到贡献源码),几乎可以掌握框架的所有知识了,这时你的编程思想和水平都会有很大的提升。

    推荐的框架:Laravel Slim Symfony Yii

    5. 读源码

    如果说多写代码是建造性的学习,那么这里提到的阅读源码就是拆解性的学习。在创造的同时,你不妨多看看那些漂亮的轮子是怎么创造出来,看看人家解决同样的问题是什么样的思路,在你发现大神的思路如此的精彩的同时,你也在潜移默化地吸收着大神的思路。

    今晚先写到这,太困了。早上起来再补下

    Happy Hacking

    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

    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

    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:

    HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 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

    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

    Hot Tools

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    EditPlus Chinese cracked version

    EditPlus Chinese cracked version

    Small size, syntax highlighting, does not support code prompt function

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor