Home Backend Development PHP Tutorial What exactly do you need to learn to learn PHP? _PHP Tutorial

What exactly do you need to learn to learn PHP? _PHP Tutorial

Jul 13, 2016 am 10:33 AM
php learning

Many people who learn PHP have never been able to figure out the difference between a PHP programmer and a Java programmer or a .net programmer. Let me tell you, they are all the same, there is no difference. The following content is based on the skills mastered by a Java programmer compared to PHP! Let me tell you, they are actually the same, they are just tools, there is no distinction between high and low. It’s just that you are not skilled and don’t know.

  1. Syntax: You must be familiar with it. When writing code, the IDE editor should be able to know what kind of syntax error it is based on the error message when it reports an error on a certain line, and know how to correct it.
  2. Commands: You must be familiar with some common commands and their common options in PHP. Be familiar with those commands and run php.exe -h yourself. If you have not used all of these commands, then you actually don’t know much about PHP.
  3. Tools: You must be proficient in using at least one IDE development tool, such as: Eclipse, Netbeans, zend or editplus, ultraedit, including project management, setting of common options, installation and configuration of PHP plug-ins, and debugging.
  4. API: The core API of PHP is very large, but there are some contents that I think you must be familiar with, otherwise it will be impossible to use PHP proficiently, including:
  • Flexible use of more than 80% of the functions in the file directory processing function package.
  • Flexible use of more than 80% of the functions in date and time functions.
  • 100% content in the math function library.
  • More than 60% of the content in the network library is relatively familiar with the functions of each function.
  • More than 60% of the content under string processing functions, especially various processing functions.
  • More than 90% of the content under the regular expression function, especially various regular processing.
  • More than 40% of the content under some security libraries, if you have no contact with security, it is impossible to master PHP.
  • XML processing, familiar with the advantages and disadvantages of SAX, DOM and JDOM and being able to use one of them to complete XML parsing and content processing.
  • More than 80% of the content under the graphics and image function library, especially some image generation and processing.
  • More than 90% of the content under MySQL database functions, especially functions for processing various data.
  • More than 90% of the content under array processing functions, especially various operation processing functions.
  • More than 80% of the content in other PEAR, PECL, and some extended class libraries, especially the processing of some commonly used classes.
  • Find different function libraries for different needs.
  • Testing: You must be familiar with using phpunit to write test cases to complete automatic testing of the code.
  • Management: You must be familiar with using xinc, phing, etc. to complete common tasks of project management, such as project compilation, phpdoc generation, generation, version control, and automatic testing.
  • Troubleshooting: It should be possible to quickly locate the cause and approximate location of the problem based on the exception information.
  • Thought: The main requirements of OOP must be mastered, so that the system developed using PHP can be a real PHP system.
  • Standards: The code you write must comply with popular coding standards, so that the readability of the program will be better.
  • Erudition: Master OOA, OOD, MS SQL Server, Oracle, Zendframework, cakephp, symfony, template technology and other popular technologies, master software architecture design ideas, search engine optimization, cache system design, website load balancing, system performance tuning and other practical technologies.
  • Based on the above, I don’t find any difference between PHP and java. There are a lot of things to learn about PHP, Java, and .net.

    If there are several languages ​​to choose from, then choose the one with the least difficulty in learning.

    Don’t trust advertisements and the media. The only thing you can trust is your market.

    Individuals can like one, two or even several languages, but they must not exclude any other language.

    Attached is a conversation:

    Impatient people tend to say: PHP language is not good, you should learn Java, C#, VB.NET: - It's you who can't do it! ?

    Impetuous people tend to ask: Which one is better, PHP or Java, C#, or VB.NET; - both are good - as long as you can learn it well;

    Impatient people tend to ask: What should I learn? - Don’t ask, just learn;

    Impetuous people tend to ask: Is there any way to make money with PHP? - I suggest you rob a bank

    www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/752419.htmlTechArticleMany people who learn PHP have never been able to figure out whether a PHP programmer is a Java programmer or a .net program What is the difference between members? Let me tell you, they are all the same, there is no difference. The following content...
    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 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)

    How to learn PHP development? How to learn PHP development? Jun 12, 2023 am 08:09 AM

    With the development of the Internet, the demand for dynamic web pages is increasing. As a mainstream programming language, PHP is widely used in web development. So, for beginners, how to learn PHP development? 1. Understand the basic knowledge of PHP. PHP is a scripting language that can be directly embedded in HTML code and parsed and run through a web server. Therefore, before learning PHP, you can first understand the basics of front-end technologies such as HTML, CSS, and JavaScript to better understand the operation of PHP.

    PHP study notes: web crawlers and data collection PHP study notes: web crawlers and data collection Oct 08, 2023 pm 12:04 PM

    PHP study notes: Web crawler and data collection Introduction: A web crawler is a tool that automatically crawls data from the Internet. It can simulate human behavior, browse web pages and collect the required data. As a popular server-side scripting language, PHP also plays an important role in the field of web crawlers and data collection. This article will explain how to write a web crawler using PHP and provide practical code examples. 1. Basic principles of web crawlers The basic principles of web crawlers are to send HTTP requests, receive and parse the H response of the server.

    PHP study notes: modular development and code reuse PHP study notes: modular development and code reuse Oct 10, 2023 pm 12:58 PM

    PHP study notes: Modular development and code reuse Introduction: In software development, modular development and code reuse are very important concepts. Modular development can decompose complex systems into manageable small modules, improving development efficiency and code maintainability; while code reuse can reduce redundant code and improve code reusability. In PHP development, we can achieve modular development and code reuse through some technical means. This article will introduce some commonly used technologies and specific code examples to help readers better understand and apply these concepts.

    PHP study notes: performance analysis and tuning PHP study notes: performance analysis and tuning Oct 08, 2023 pm 03:21 PM

    PHP study notes: Performance analysis and tuning Introduction: In web development, performance is a very critical factor. A high-performance website can provide a better user experience, improve user retention, and increase business revenue. In PHP development, performance optimization is a common and important issue. This article will introduce performance analysis and tuning methods in PHP, and provide specific code examples to help readers better understand and apply these techniques. 1. Performance analysis tool Xdebug extension Xdebug is a powerful P

    What is the best way to learn PHP in 2023? What is the best way to learn PHP in 2023? Sep 10, 2023 pm 09:16 PM

    What is the best way to learn PHP in 2023? With the rapid development of the Internet, computer programming has become a skill with extremely high employment prospects. Among many programming languages, PHP is a language that is widely used in network development. If you want to learn PHP, it's important to know the best way to learn it. PHP is an open source, server-side scripting language used to develop dynamic websites and applications. Compared to other languages, PHP has a lower learning curve and a wide range of applications, making it an ideal choice for beginners.

    Learn video special effects and filter processing functions in PHP Learn video special effects and filter processing functions in PHP Aug 07, 2023 pm 11:53 PM

    Learn video special effects and filter processing function methods in PHP. PHP is a powerful programming language that is widely used in the field of web development. With the development of website design, video special effects and filter processing are becoming more and more popular. This article will introduce how to use PHP to implement video special effects and filter processing, as well as some commonly used function methods. 1. Install the ffmpeg extension. To process videos, we need to install the ffmpeg extension. Through this extension, we can directly call the ffmpeg command in PHP for video processing. Installation process

    PHP study notes: front-end and back-end separation and API design PHP study notes: front-end and back-end separation and API design Oct 08, 2023 am 09:42 AM

    PHP study notes: Overview of front-end and back-end separation and API design: With the continuous development of the Internet and the increasing user needs, the development model of front-end and back-end separation has attracted more and more attention from developers. Front-end and back-end separation refers to separating the development of the front-end and the back-end, and conducting data interaction through APIs to achieve development efficiency and flexibility. This article will introduce the concept of front-end and back-end separation, and how to design an API. The concept of front-end and back-end separation: The traditional Web development model is front-end and back-end coupling, that is, the development of front-end and back-end is carried out in the same project.

    PHP study notes: form processing and data validation PHP study notes: form processing and data validation Oct 09, 2023 am 08:52 AM

    PHP study notes: Form processing and data validation In web development, forms are one of the important components for users to interact with the website. When users fill out forms and submit data on the website, the website needs to process and verify the submitted data to ensure the accuracy and security of the data. This article will introduce how to use PHP to process forms and perform data validation, and provide specific code examples. Form submission and data preprocessing In HTML, we need to use the <form> tag to create a form and specify the form

    See all articles