Table of Contents
回复内容:
Home Backend Development PHP Tutorial 优秀的PHP前端工程师 无需精通 但需熟悉,这个各位怎么看待,我现在很盲目

优秀的PHP前端工程师 无需精通 但需熟悉,这个各位怎么看待,我现在很盲目

Jun 06, 2016 pm 08:33 PM
php

全栈工程师 和专家级别的工程师, 不论PHP工程师 还是前端工程 这两者之间有什么明显的区别或者不同吗?

在职业生涯发展方面,各位大神给点建议

本人是完全自学的,没有什么大神级别的老师带领我?

有人说全栈好,有人说专家好?现在无法抉择,

回复内容:

全栈工程师 和专家级别的工程师, 不论PHP工程师 还是前端工程 这两者之间有什么明显的区别或者不同吗?

在职业生涯发展方面,各位大神给点建议

本人是完全自学的,没有什么大神级别的老师带领我?

有人说全栈好,有人说专家好?现在无法抉择,

十八般兵器样样皆通 往往只能做个枪棒教头,
吹拉弹唱都能来两下 一般就是个街头艺人
大多数自称全栈的,只不过是在语法层面对几种编程语言有些了解罢了,就是个玩杂耍的而已。
那么怎样才能做全栈呢?
只有对计算机语言,操作系统,软件设计技巧,算法基础等等有深厚背景的人才能做到,
市面的语言层出不穷,
但大部分新语言都逃不出参考现有语言以及范式,
有着雄厚的计算机基础,才有资格说语言都是相通的,才能各种语言随手拈来。

对于那些仅仅会几门语言语法的人来说,
你们离全栈还差的远呢。

那么,啥叫专家呢?
hello world写了100年,能成为专家吗?
函数手册倒背如流,能成为专家吗?
做了1W个企业站,能成为专家吗?
说白了,这些都不能称之为技术,
大多数的程序员,根本不能称之为程序员,
只能叫手艺人,
因为这些工作,都是熟练工,根本没凝结多少脑力智慧,
专家与全栈工程师,本质是一样的,
深厚的内功是必须的,
然后,一个人专研深度,
一个人专研广度,
但是,无论深度还是广度,没有深厚的计算机基础和素养,都是扯淡

全栈一般可以快速开发出应用,专家一般可以就专的方面给予优化和不断改进。

所以他们是适合两类不同的开发的:

全栈,讲究全,快速开发,一般适合在项目的早期,然后在资金、人力等条件匮乏下,节省人力和精力,快速开发出应用,自己也能平时闲着搞出点东西来;

专家,讲究专,深度优化,优化包括应用不断的迭代更新过程中架构、所依托技术、后期扩展性等等方面,一般适合在一些项目比较庞大的开发中,尤其专的方面是和项目(产品)核心功能优化对口的;

但是到了一定阶段没有两级的,都是全而专,意思是,全栈不知不觉会在某方面相比于其他更加专,专家也会横向拓展自己的能力,“不当厨子的司机不是好开发”。

所以,就目前来说看你之后选择,选择项目早期开发还是后期

专家路太长,全栈较易走。最大的差别应该是在生产力上的差别吧

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

Video Face Swap

Video Face Swap

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

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)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1246
24
Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

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 in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

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: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

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.

See all articles