search
HomeheadlinesPHPConChina 2019 Participation Insights

PHPConChina 2019 Participation Insights

The long-awaited PHPCON2019 has finally been held. The conference has continued the tradition of rain. However, this year we encountered a typhoon and the weather was extremely worse than before. It is estimated that there were many buyers. It’s a pity that friends who bought tickets can’t attend. There were many celebrities and big names at this conference, including Niao Ge (video conference), Han Tianfeng, Hong Tao, Guo Xinhua, Zhuang Biaowei, Gao Xu, etc., all present. Overall, there are quite a lot of people coming. A total of 12 topics were covered at the conference. I took scattered notes during the lecture and compiled them into a blog.

Theme

"Swoole5 takes PHP to the distance" -- Han Tianfeng

Mainly This explanation of Swoole4.4 version introduces some open source PHP coroutine frameworks as a prospect for Swoole5.

"Sharing some experiences of Weibo on burst traffic" - Hu Bo

Hu Bo Daniel interestingly explained the relationship between Weibo and Weibo in the past two years "Celebrities' Struggles with Breakups in Love" mainly introduces the application of Weibo's anti-collapse system (difuse). I hope it can be open sourced for everyone to learn from.

"Practical Combat of Messaging Service in China" - Wang Jing

It is more practical application, and it is a theme that I personally like.

The main content includes the evolution of the actual architecture of the middle platform. There are two core ROIs and business replication in the middle platform architecture. The ideas include multiple accesses, infinite expansion channels, data analysis, stability and bypass systems. . The message distribution layer distributes different channels based on type and channel. In terms of security, strategic management and control are carried out from various dimensions such as time, duplication, frequency, blacklist, quantity, city, and content.

"Embracing TARS: Building a PHP Microservice Ecosystem" - Liang Chen

Mainly introduced the overall architecture of TARS microservices, without taking notes on the specific content. We have compiled some useful channels:

tars video tutorial: https://www.bilibili.com/video/av47290510/

tars project address: https ://github.com/TarsPHP/TarsPHP

Use mirrors to quickly build an environment: https://github.com/TarsCloud/TarsDocker

FAQ faq: https://github.com/TarsPHP/TarsPHP/blob/master/TARS-PHP-FAQ.md

Issue template: https://github.com /TarsPHP/TarsPHP/blob/master/TARS-PHP-ISSUE.md

Gitbook: https://tarsphp.gitbook.io/doc/

If you have any difficult questions, try to raise them on github.com/tarscloud. Github can settle the questions so that people who use them later can search for them.

"PHP Resident Process Programming Instructions" - Guo Xinhua

I remembered a few scattered points: tool positioning blocking, ptrace principle, profile tool, code optimization, etc.

●"PHP's Business Practice in 2345" - Gao Xu

The content that Xu Ge talks about is also more practical, and it is also a topic that I personally like. The content mainly includes: basic business services such as real-time server monitoring and real-time viewing and warning of business logs; business risk monitoring: code avoidance and inspection, code management and release, business efficiency improvement, real-time online code monitoring, etc.; business scenario practice: real-time data processing , Massive data push architecture design, system optimization experience, and application optimization experience.

●"Brother Bird's Speech"

Unfortunately, Brother Bird was unable to attend the event this year due to typhoon weather. . . However, Brother Niao also held a video conference, mainly talking about what happened in the PHP community this year, and answering questions from some peers.

●"Interesting Questions and Answers" — Fan Shengyou

This link is a very interactive part. Some questions and answers have really enlivened the atmosphere of the scene. I regret that I I answered 2 questions, one was answered slowly, and the other was answered incorrectly because I read the wrong order, so I unfortunately missed the prize. .

PHPConChina 2019 Participation Insights

●"Cracking the Objective Observability of Cloud Native Applications" - Liu Zheng

I was really sleepy around 2 o'clock, so I didn't How to listen. . .

●"Collective Learning of a Team" - Chen Lei

I bought the book "PHP7 Underlying Design and Source Code Implementation" on Double Eleven last year. I learned about the story of Chen Lei Daniu and the Didi team in the preface, and I admired it very much. It can be seen that an excellent team is of great help to personal growth, and personal self-discipline and perseverance are also very important. Overall, there is a passage in the next two paragraphs that impressed me deeply. The general meaning is: "The so-called thirty years in Hedong and thirty years in Hexi. From 1919 to 1949, the entire Chinese society was on an upward trend. From 1949 to 1979, the society was on a downward trend. From 1979 to In 2009, society was on an upward trend again. From 2009 to now, there is some downward trend. When the overall market is not good, as long as we continue to make breakthroughs and improve ourselves, it will be easier to stand out."

●《 People use it every day but don’t know it - Let’s talk about the other side of open source” - Zhuang Biaowei

Mr. Zhuang comes from Huawei Cloud, but unfortunately he hasn’t heard some of Huawei’s stories. What impressed me most was that during the QA session, someone asked about the development of Huawei’s 5G and asked Mr. Zhuang to predict the development trend of the technology. Mr. Zhuang’s answer was also very good – “As a programmer, you must go deep into the bottom layer to look at the source code. You won’t be unemployed because you really understand.”

Summary

The two days passed very quickly, and the meeting was also I learned that many people have come to attend the conference for 2-3 consecutive years, which shows that there are still many people who maintain continued enthusiasm for PHP. I have the impression that many people ask Brother Niao what he thinks of PHP, and whether learning PHP requires mastering other programming languages, etc. Let me talk about my personal opinion. It is necessary to master multiple technology stacks. There is no right or wrong language, just make different choices in different scenarios. In addition, I feel deeply that excellent Didi teams like Chen Lei are studying so hard (arrive 100 minutes early every day to study the source code), and we should work harder to stand higher and go further.

Original text from: https://tsmliyun.github.io/life/PHPCON2019 Participation Insights/ Thanks to the author!

Related recommendations:

 PHP 7.4 is expected to be released in December 2019

 2019Why do we continue to use PHP?

 Why do programmers hack PHP? PHP Chinese website has something to say!

 PHP is no longer what it was ten years ago

Statement
This article is reproduced at:github. If there is any infringement, please contact admin@php.cn delete
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

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

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

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

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

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

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

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

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

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

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

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

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

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

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

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

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

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use