Programmers (generally) define a good programming language as one they know best or use most often. I'm a PHP programmer, John is a JavaScript programmer, DHH is a Ruby programmer, and Schwartz and Randall are Perl programmers. Different programmers look at the problem differently, but there are always one or two that are collectively considered the best.
As a PHP developer, it hurts every time I hear PHP being disrespected.
Although we must use PHP as a language for web applications, it is a bad language and its use should not be encouraged, or supported beyond necessity.
Oops, when I heard that the language I use every day is given a bad evaluation, some people may say that you should not care about other people's evaluation of the language you choose, as long as you agree with it. I guess I really shouldn't, and what that statement implies is that not only does the language suck and the developers suck, but we PHP developers suck too.
So, what exactly should be done to shut down other people’s big mouths? Can we make the PHP language respected? Can we make PHP developers respected? Let’s analyze some aspects where we can do it at this point.
1. Break everything
PHP7 is going to break everything. PHP developers should accept the law of breaking backward compatibility between versions. As long as extensive backward compatibility is not allowed, PHP7 will be a highly respected language.
1. Create a specific core language
Remove all library methods and keep the core methods in the object set. You should be able to write PHP7 without any external libraries or extensions and a nice complete language for basic input/output, string handling and math. Any extension outside of the library should be approved.
2. Treat everything as an object
Take objects from Ruby, Smalltalk and (mainly) Java and treat it all as an object. Integers are objects, strings are objects, and each of them has methods that can be manipulated. I don't believe that PHP needs the notion of Ruby and Smalltalk to pass messages between objects, and calling methods on objects is the best.
3. Consistently named methods and classes
Since one of the biggest complaints about PHP is the constant need to check, (needle,haystack) or (haystack, needle) , or some_function(), or function_some(), or someFunction(), a consistent format needs to be developed.
4. Keep things strict
Try passing a float string into a method? This is a warning.
5. Everything is Unicode
All strings in PHP6 are Unicode, which is good, and I advocate that PHP7 should also be maintained.
6. Central startup point
Create a main class or initialization from which all code execution originates.
7. Clean up C code
I am not a C expert, but if you know more about Ruby’s C code to PHP’s C code, it can be very easy Understand the internals of PHP and Ruby. I'm very familiar with PHP, so writing my own extension is easier.
8. Get rid of eval()
eval() is evil. If you are using it then this is a wrong idea: this will break PHPUnit, discard it from now on.
9. Support operator overloading
Because everything is an object, developers only need to master the methods of operating objects.
10. Allowed method signatures
Allows true method signatures, so programmers can have methods with the same name with different parameter lists or return types.
<ol class="dp-c"> <li class="alt"><span><span class="keyword">class</span><span> A { </span></span></li> <li> <span class="keyword">public</span><span> int </span><span class="keyword">function</span><span> doSomething(int </span><span class="vars">$a</span><span>, float </span><span class="vars">$b</span><span>) { </span> </li> <li class="alt"> <span class="comment">// Same as $a->*($b->to_int()); </span><span> </span> </li> <li> <span>int </span><span class="vars">$c</span><span> = </span><span class="vars">$a</span><span> * </span><span class="vars">$b</span><span>->to_int(); </span> </li> <li class="alt"> <span class="keyword">return</span><span> </span><span class="vars">$c</span><span>; </span> </li> <li><span>} </span></li> <li class="alt"> <span class="keyword">public</span><span> float </span><span class="keyword">function</span><span> doSomething(int </span><span class="vars">$a</span><span>, float </span><span class="vars">$b</span><span>, float </span><span class="vars">$c</span><span>) { </span> </li> <li> <span class="comment">// Same as calling $a->*($b->*($c)); since * is a method on each object $a and $b. </span><span> </span> </li> <li class="alt"> <span>float </span><span class="vars">$d</span><span> = </span><span class="vars">$a</span><span> * </span><span class="vars">$b</span><span> * </span><span class="vars">$c</span><span>; </span> </li> <li> <span class="keyword">return</span><span> </span><span class="vars">$d</span><span>; </span> </li> <li class="alt"><span>} </span></li> <li><span>} </span></li> </ol>
11. Create a PHP Virtual Machine (PVM)
I’m not entirely sure this is possible Yeah, since I'm not a language designer, but it would be nice to have a PHP virtual machine. It can execute PHP bytecode and allows an explicit heap and stack.
12. Delete copy-on-write (COW)
COW is a fairly unfamiliar concept, if you don’t know its existence, to new developers , it may cause problems.
13. PHP official release specification
Similar to the W3C HTML5 specification, the PHP specification will allow developers to implement their own version of PHP and ensure that there are specific examples to Compile.
2. Respect language
Efforts should be made to respect language. We should try our best to recruit developers to make PHP7 with very powerful functions. We should make huge code safe, easy to read, and teach new developers to program the right way.
I don’t know about Ruby’s craziness, but I respect the Ruby language. I see its power, I see Ruby on Rails as a very good framework, it's just not my cup of tea. If we can gain recognition or respect from developers with good prestige, PHP will go further.
3. Respect developers
From the above understanding, we need a very respected PHP development core team. They release code, give talks, and show people the "right way" of doing things, and this team will quickly gain the respect of many developers.
Conclusion
I’m excited about the future of PHP. I highly doubt my ideas will be implemented, but I truly believe they will help society as a whole. I was so excited when the world's second largest website announced that they were helping PHP build great communities. PHP will not disappear, it will get better and better. As long as we work hard to improve it and improve it, one day PHP will become a language generally respected by developers.
Finally, I am not a language designer. My idea may be considered complete nonsense. If I'm incorrect somewhere, please politely let me know and I'll be happy to talk about it. Let's work together to make PHP a well-respected, powerful, fast, and efficient language. If there are any errors in compilation, please correct me!

在php5中,我们可以使用fsockopen()函数来检测TCP端口。这个函数可以用来打开一个网络连接和进行一些网络通信。但是在php7中,fsockopen()函数可能会遇到一些问题,例如无法打开端口、无法连接到服务器等。为了解决这个问题,我们可以使用socket_create()函数和socket_connect()函数来检测TCP端口。

php7.0安装mongo扩展的方法:1、创建mongodb用户组和用户;2、下载mongodb源码包,并将源码包放到“/usr/local/src/”目录下;3、进入“src/”目录;4、解压源码包;5、创建mongodb文件目录;6、将文件复制到“mongodb/”目录;7、创建mongodb配置文件并修改配置即可。

解决 PHP 7.0 中插件未显示已安装问题的方法:检查插件配置并启用插件。重新启动 PHP 以应用配置更改。检查插件文件权限,确保其正确。安装丢失的依赖项,以确保插件正常运行。如果其他步骤均失败,则重建 PHP。其他可能原因包括插件版本不兼容、加载错误版本或 PHP 配置问题。

PHP8相较于PHP7在性能、新特性和语法改进、类型系统、错误处理和扩展等方面都有一些优势和改进。然而,选择使用哪个版本要根据具体的需求和项目情况来决定。详细介绍:1、性能提升,PHP8引入了Just-in-Time(JIT)编译器,可以提高代码的执行速度;2、新特性和语法改进,PHP8支持命名参数和可选参数的声明,使得函数调用更加灵活;引入了匿名类、属性的类型声明等等。

php7.0安装部署的方法:1、到PHP官网下载与本机系统对应的安装版本;2、将下载的zip文件解压到指定目录;3、打开命令行窗口,在“E:\php7”目录下运行“php -v”命令即可。

PHP服务器环境常见的解决方法包括:确保已安装正确的PHP版本和已复制相关文件到模块目录。临时或永久禁用SELinux。检查并配置PHP.ini,确保已添加必要的扩展和进行正确设置。启动或重启PHP-FPM服务。检查DNS设置是否存在解析问题。

本地环境:redhat6.7系统。nginx1.12.1,php7.1.0,代码使用yii2框架问题:本地的web站需要用到elasticsearch服务。当php使用本地服务器搭建的elasticsearch时,本地的负载都是正常。当我使用aws的elasticsearchservice服务时,本地服务器出现负载经常过高的情况。查看nginx和php日志,发现没有异常。系统的并发连接数也不高。这时候想到我们老大给我讲的一个strace诊断工具。调试过程:查找一个php的子进程idstrace-

随着互联网技术的发展,计算机编程语言也随之不断发展和更新。PHP作为一种广泛应用于Web开发领域的编程语言,在多年的发展中经历了多个版本的更新,而最新版的PHP7又在性能和稳定性上有了巨大提升。为了能更好地应用PHP编程语言,这篇文章将介绍PHP7的下载和安装教程,供初学者参考。


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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use
