


身边有几个做PHP开发的朋友,因为面试,也接触到不少的PHP工程师,他们常疑虑自己将来在技术上的成长与发展,我常给他们一些建议,希望他们能破突自己,有更好的发展。
PHP工程师面临成长瓶颈
先明确我所指的PHP工程题,是指毕业工作后,主要以PHP进行WEB系统的开发,没有使用其他语言工作过。工作经验大概在3~4年,普通的WEB系统(百万级访问,千成级数据以内或业务逻辑不是特别复杂)开发起基本得心应手,没有什么问题。但他们会这样的物点:
除了PHP不使用其它的语言,可能会点shell 脚本。
对PHP的掌握不精(很多PHP手册都没有看完,库除外)
知识面比较窄(面对需求,除开使用PHP和mysql ,不知道其它的解决办法)
PHP代码以过程为主,认为面向对象的实现太绕,看不懂
这些PHPer 在遇到需要高性能,处理高并发,大量数据的项目或业务逻辑比较复杂(系统需要解决多领域业务的问题)时,缺少思路。不能分析问题的本质,技术判断力比较差,对于问题较快能找出临时的解决办法,但常常在不断临时性的解决办法中,系统和自己一步步走向崩溃。那怎么提高自己呢?怎么可以挑战难度更高的系统?
更高的挑战在那里?
结合我自己的经验,我列出一些具体挑战,让大家先有个感性的认识。
高性能系统的挑战在哪里?
如何选择WEB服务器?要不要使用fast-cgi 模式
要不要使用反向代理服务?选择全内存缓存还是硬盘缓存?
是否需要负载均衡?是基于应用层,还是网络层? 如何保证高可靠性?
你的PHP代码性能如何,使用优化工具后怎么样? 性能瓶颈在那里? 是否需要写成C的扩展?
用户访问有什么特点,是读多还是写多?是否需要读写分离?
数据如何存储?写入速度和读出速度如何? 数据增涨访问速读如何变化?
如何使用缓存? 怎么样考虑失效?数据的一致性怎么保证?
高复杂性系统的挑战在哪里?
能否识别业务所对应的领域?是一个还是多个?
能否合理对业务进行抽象,在业务规则变化能以很小的代价实现?
数据的一致性、安全性可否保证?
是否撑握了面向对象的分析和设计的方法
当我所列出的问题,你都能肯定的回答,我想在技术上你基本已经可能成为架构师了。如何你还不能回答,你需要在以下几个方向加强。
怎么样提高,突破瓶颈
如何你还不能回答,你需要在以下几个方向加强:
分析你所使用的技术其原理和背后运行的机制,这样可以提高你的技术判断力,提高你技术方案选择的正确性;
学习大学期间重要的知识, 操作系统原理,数据结构和算法。知道你以前学习都是为了考试,但现在你需要为自己学习,让自己知其所以然。
重新开始学习C语言,虽然你在大学已经学过。这不仅是因为你可能需要写PHP扩展,而且还因为,在做C的应用中,有一个时刻关心性能、内存控制、变量生命周期、数据结构和算法的环境。
学习面向对象的分析与设计,它是解决复杂问题的有效的方法。学习抽象,它是解决复杂问题的唯一之道。
“这么多的东西怎么学,这得学多久呀” ?
如果你努力的话,有较好的规划,估计需要1~2年的时间,怎么学习的问题,我们后续再谈。
(注:下面是原文作者左文建分享的学习方法)
学习建议
如何有效的学习是一个大问题。 自己有些实践但很零散,不好总结。昨天晚上睡觉前,突然想到了RUP的核心,“以架构为中心,用例驱动,迭代开发”,借用这个思想,关于有效的学习的方法,可以这样来表述:
以原理、模型或机制为中心,任务驱动,迭代学习
有点抽象, 举个例子来说明如何学习。
目的: 学习如何提高处理性能。
可迭代驱动的任务: 通过IP找到所在地域。
这是WEB应用常见的任务,IP数据库是10左右万行的记录。
第一次迭代: 不考虑性能的情况下实现功能(通过PHP来实现)
因为无法直接通过KEY(IP)进行查找地域,所以直接放到数据或通过关联数组这种简单的方法都是不行的。思路还是先把数据进行排序,然后再进行查找
1. How to search by IP? For ordered data, binary search is the fastest.
2. How to sort? Of course you can use the library function sort, but since you are learning, it is better to implement quick sort yourself.
Learning objectives: Sorting algorithm, search algorithm
PHPer’s data structure and algorithm foundation is relatively poor. I usually don’t have any tasks in this area, and I don’t learn it myself, so I lack knowledge in this area. However, the problems solved by programming will ultimately come down to the data structure and the algorithms that operate on this data structure. If the data structure algorithm is always in your mind, you will be able to clearly understand its inner structure when you encounter a problem, and the solution will naturally emerge.
Second iteration: Optimizing data loading and sorting
If you do the first step, it is basically still unusable because the data needs to be loaded and sorted every time, which is too time-consuming. The solution is to load and sort the data once and put it in a place where each PHP process can access it.
Put it in memcache This is an easy question for everyone. In fact, putting it in shared memory (supported by EA and other accelerators) is a faster way, because memcache also has more network operations. Whether the data is put into the shared memory as a whole or in chunks, how to test the performance? How to analyze the bottleneck (xdebug)? Driven by these issues, you will learn
Learning objectives: Methods to detect, locate, and optimize PHP performance; the impact of PHP implementation structure on performance.
The third iteration: Writing PHP extensions
The performance still cannot be improved, and I have to enter the world of C/C++. But from now on, you will not only be a PHPer but also an all-round engineer on the server side. Of course, this will be a huge challenge for students who have never done C/C++. I can't simply explain how to learn C/C++ here. You can refer to "PHP Programmers Learn C++"
Learning goals: Learning C/C++, writing PHP extensions
How to determine the mechanisms and principles that need to be learned? How to find the driving learning tasks?
I don’t have any idea about what I need to learn. How can I answer the above two questions?
Find out the key points that need to be learned from the positioning of this technology, that is, how it does it (mechanism) and why it can do it (model or principle)
List the most common aspects of this technology Application, as a learning task, is carried out from simple to difficult.
If I need to learn Javascript, I have some perceptual knowledge of HTML and CSS
First of all, I learned that JS is a dynamic language in the WEB field, which mainly solves the dynamic interaction of web pages.
Then the key points I want to learn are as follows:
How JS interacts with HTML (mechanism)
What are the dynamic characteristics of JS, and how are they different from other dynamic languages? (Language model)
If you are completely self-study, find the key points that need to be learned (mechanism, model, principle). Setting learning tasks is indeed not that easy to grasp. If you find an experienced person to guide you or add a learning team, the speed of learning will indeed be greatly improved.
Finally, what I want to say is: PHP is used because it is simple, but its simplicity cannot limit our growth!
Author: Zuo Wenjian

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

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.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
