search
HomeBackend DevelopmentPHP Tutorial好久没来,发点感慨。

也算是CSDN的老人了……当年还当过BCB的版主,06/07年的时候转向PHP做一些自己的东西。

现在主力维护的站点是https://rsywx.net。用到的基本技术是LAMP,在海外搞了个虚拟主机。其它的技术包括:Symfony, Twig, Bootstrap。还有一段时间玩过Dart。

这几天比较空,上来转转,发现还是很很多年前一样, 重复的错误和重复的问题。

最大的问题还是: 陈旧的用法和库的使用

很多问题中列出的代码还是所谓的vanilla PHP:PHP代码和HTML代码交错地混合在一起。我只想说,这种做法是很不好的。现在,除了纯粹的测试一个函数或者一个库,而且你确定你的这些代码不会用到后续的产品中间,我才会用这样的vanilla PHP写法。否则,我一定会用一个框架(复杂一点的用Symfony,简单一点的用Silex)。

如果实在不想用框架,那么至少在调用数据库的时候,请你不要再用mysql_connect和类似的函数了,好吗?PHP已经明确表示这些函数(库)已经的过时,马上就会被停用。我们至少要用PDO吧?

还有,如果方便和有精力,可以考虑用composer来组织文件依赖关系吗?——这点我也做得不是很好,不过会慢慢提高。主要是因为我用框架时,框架将这些都自动包含了,自己在编写自己的应用时,就懒得应用了。

再多说几句。

要当一个好的PHP程序员,英语水平还是要有一定的高度。国内的文档以讹传讹的过多,而且传达的都是一些陈旧的信息(比如上面提到的陈旧的用法和陈旧的库的使用),对初入门的开发者影响太坏。所以跑到国外的技术站点去看那些最新的技术潮流,即使不能完全弄懂,也是能帮助我们提升眼界。眼界提高了,对自己的要求也就提高了。

我说这些没有别的意思,作为一个业余PHP开发者,我在Sitepoint.com上也发表过不少文章,都会讲述一些最新的技术,也学到很多新的工具的使用——比如我最近用Sami在生成API文档,用Spress在做一个静态站点。这些的讨论,我在这里没有看到,非常遗憾。

我没有贬低深入PHP最基本部分的重要性。一个Symfony的Request对象,最终还是要用到get/post过来的数据,但是,如果我们能通过浏览这些成熟框架的代码,直到它如何处理这些要求,对我们写自己的代码会有巨大的帮助。是不是?








回复讨论(解决方案)

学习了,很多程序员并没有在如何提高自己水平上面下足功夫!

不愧是大牛,搞得我一点不懂

666  接分模式开启

国内的文档以讹传讹的过多

这个的确是这样的。

LZ真是好久不见了

如果都按一个套路来,编程还有什么意思?

如果都按一个套路来,编程还有什么意思?



难道按照不好的、陈旧的套路才有意思?

重复的错误和重复的问题
初学者都会犯同样的错误,这一点都不奇怪

陈旧的用法和库的使用
现在并没有以新角度给初学者阅读的资料

框架会束缚使用者的思维,只有放弃思维定式,才可能有所创新

虽然目前现状并不乐观,但我依然坚持点滴的将他们引向正路,而你只是偶尔地来这指手画脚指责一下

斑竹说的好,精辟!

重复的错误和重复的问题
初学者都会犯同样的错误,这一点都不奇怪

陈旧的用法和库的使用
现在并没有以新角度给初学者阅读的资料

框架会束缚使用者的思维,只有放弃思维定式,才可能有所创新

虽然目前现状并不乐观,但我依然坚持点滴的将他们引向正路,而你只是偶尔地来这指手画脚指责一下



版主辛苦了

重复的错误和重复的问题
初学者都会犯同样的错误,这一点都不奇怪

陈旧的用法和库的使用
现在并没有以新角度给初学者阅读的资料

框架会束缚使用者的思维,只有放弃思维定式,才可能有所创新

虽然目前现状并不乐观,但我依然坚持点滴的将他们引向正路,而你只是偶尔地来这指手画脚指责一下



框架是束缚还是规范并加速提高,我认为是后者。

我偶尔来,当然有自己的原因。这个轮不到你来指摘。至少我也在认真的回答问题,用比较好的思路去回答问题。这样做是不对的?还是和你的想法不一样?
Statement
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

See all articles

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

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

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.