I've wanted to write this article for a long time, but never had the time to finish it. I'm not here to tell you how to do it. I hope this article is just an introduction to discuss with you how to build an effective and flexible network application.
After 2-3 years of developing web applications, my development experience has become more vivid. Looking back at the code I used to write for Geocrawler, I can’t believe it is mine. Due to the GPL, the source code in PHPBuilder is also mixed.
Recently, as an experienced PHP developer, I have been helping write SourceForge, and I think this shows the scope of the final result. Good code should be divided into multiple parts, with appropriate library and function calls, a clear database structure, and each part of the site is relatively independent from other parts.
However, this is still not the best. If I could redo it, I would focus more on separating the HTML layer from the data layer, achieving this through objects and clear function libraries.
Beautiful Graphics
I know managers like to use beautiful graphs and charts to describe them, which will leave the best impression on us. Using this idea of hiding behind a structure, you can separate your logic from appearance, which means that any complex program can be expressed in an "API/Data Access Layer".
Instead of putting security checks, updated sentences, etc. in the HTML layer, it is better to put them as a whole in your API layer. And this HTML layer only contains simple function calls and returned arrays, objects or other custom objects, as well as some collections of database retrieval results, etc.
If you do this, the top level will be very thin and you can easily create and maintain it.
In the following example, this HTML interface only has some direct calls to functions in the API layer, some HTML tool libraries (it can generate a pop-up box, etc.), and some calls from the database abstraction layer. Database manipulation methods (you don't need to bind to a specific database).
Basics
The most basic aspects of flexible PHP program structure are the following:
Database independence
Interface independence
Portability
Object-oriented or at least should be Composed of function libraries
Are there others?
Of course there are some other things, but I think those are too big, maybe you can point them out yourself.
Let’s talk about each of them in detail.
1. Database independence
You never know where your site will run, of course when you create it, you want it to be big and have a high flow. So you don't want to tie yourself to MS Access or any other lightweight database system. Although you can't plug into various database systems immediately, you can potentially switch between them easily. You have a few different options for abstracting away your database calls. A peculiar approach in PHP is that you have to write different code for each different database system, because the access functions for each different database in PHP are different. To get around this, you can use an abstract database access layer, like PHPLib, the next version of PEAR, and the one we describe in SourceForge.
2. Interface irrelevance
Is the technology of an application more important or the site it runs on? We don't really know. I never believed this - HTML is a standard. Especially for a web application, changes to the interface mean we always have to rewrite. But if your application is large and complex, you have to establish some other interfaces for your database, as long as you don't want to copy & paste your access check and other codes everywhere in your site program. This also means that if you design your application correctly, you can easily rewrite your site to adapt to WAP by simply writing a small WAP interface and having it call your database access object. . But if you don't design your program well, changing your HTML version to WAP version is a complicated project.
I also brought this idea into SourceForge. We have a huge user base who sends/receives bugs, tasks, etc. for us. First, we pointed out that all of this would be interfaced through our web pages, and then, due to pressure from Eric Raymond and others, we decided to use XML for the external interface to the database.
Fortunately, we separated the core logic code of the program from its interface in April. I'll try to express how we do it, hopefully it will be helpful to you in your work.
The SourceForge bug tracker and other tools are split into two libraries - the HTML library and the data access library. This data access library checks the correctness of the entered values, handles security checks, and returns TRUE or FALSE on success/failure.
Due to simplification reasons, this example is not based on a complete object model, so I have to explain this base class and some of its derived classes, etc. I think this example will give you the most common idea.Examples of HTML libraries
//connect to database
require ("database.php");
//common utils like header/footer HTML
require ("html. php");
//data access library
require ("bug_data.php");
echo site_header("Page Title");
echo "
Updating a bug
";
if (bug_data_update($field1,$field2,$field3)) {
echo "
Update Failed!
";
} else {
echo "
Updated Bug Successfully
";
//echo the global error string
echo $feedback;
}
echo site_footer();
?>
Example of Data access library
3. Portability
There is no doubt that you don’t want your code to be used only for a fixed site. We may change the color selection in the future , element names, fonts or whatever, this should set up a config file that is included by multiple pages. A better idea is that your site is modular and you don't need to copy&paste any single HTML file, which I prefer. Put these into a function and call them wherever needed
The same approach can be used for database passwords, database connection strings, etc. These can be put into an abstraction layer for database processing. >
4. Object-oriented/functional
We are not developing in COBOL, so this means that we can divide the process into multiple function calls. Each call is an automatic behavior. , sometimes just call a short section of other functions and return the result
A good example is to check whether the user is logged in on each page. You can use cookies or query the database to complete this function, but once If you want to change your validation system, you have to change every page, but you should be able to do this by changing an ordinary function in the function library. Any time you write a piece of code, if it is going to be used. More than one place, you should consider putting it in a library
What else?
Obviously there are many things I haven't talked about, tell me yours. ideas, I'll discuss them in the next article. In particular, if you wrote a large, complex application, I'd like to hear how you planned it and what you think would be different if you redo it. .

技嘉的主板怎么设置键盘开机首先,要支持键盘开机,一定是PS2键盘!!设置步骤如下:第一步:开机按Del或者F2进入bios,到bios的Advanced(高级)模式普通主板默认进入主板的EZ(简易)模式,需要按F7切换到高级模式,ROG系列主板默认进入bios的高级模式(我们用简体中文来示范)第二步:选择到——【高级】——【高级电源管理(APM)】第三步:找到选项【由PS2键盘唤醒】第四步:这个选项默认是Disabled(关闭)的,下拉之后可以看到三种不同的设置选择,分别是按【空格键】开机、按组

1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

主板上SPDIFOUT连接线序最近我遇到了一个问题,就是关于电线的接线顺序。我上网查了一下,有些资料说1、2、4对应的是out、+5V、接地;而另一些资料则说1、2、4对应的是out、接地、+5V。最好的办法是查看你的主板说明书,如果找不到说明书,你可以使用万用表进行测量。首先找到接地,然后就可以确定其他的接线顺序了。主板vdg怎么接线连接主板的VDG接线时,您需要将VGA连接线的一端插入显示器的VGA接口,另一端插入电脑的显卡VGA接口。请注意,不要将其插入主板的VGA接口。完成连接后,您可以

广联达软件是一家专注于建筑信息化领域的软件公司,其产品被广泛应用于建筑设计、施工、运营等各个环节。由于广联达软件功能复杂、数据量大,对电脑的配置要求较高。本文将从多个方面详细阐述广联达软件的电脑配置推荐,以帮助读者选择适合的电脑配置处理器广联达软件在进行建筑设计、模拟等操作时,需要进行大量的数据计算和处理,因此对处理器的要求较高。推荐选择多核心、高主频的处理器,如英特尔i7系列或AMDRyzen系列。这些处理器具有较强的计算能力和多线程处理能力,能够更好地满足广联达软件的需求。内存内存是影响计算

标题:深入探讨Linux中建立链接文件的重要性与示例在Linux操作系统中,链接文件是一种非常有用的概念,它可以帮助用户更好地组织和管理文件系统中的数据,提高文件的可访问性和灵活性。理解如何在Linux中建立链接文件,对于系统管理员和开发人员来说是至关重要的。本文将深入探讨Linux中建立链接文件的重要性,并通过具体的代码示例来演示其用法和作用。1.什么是

MDF文件是一种常见的数据库文件格式,它是MicrosoftSQLServer数据库的主要文件之一。在数据库管理系统中,MDF文件用于保存数据库的主要数据,包括表、索引、存储过程等。建立MDF文件是创建数据库的关键步骤之一,下面将介绍一些常见的方法。使用SQLServerManagementStudio(SSMS)SQLServerManag

在主页选择加号按钮,接下来选择发起群聊,勾选要建群的联系人后完成即可。教程适用型号:iPhone13系统:IOS15.3版本:微信8.0.20解析1首先打开微信,在主页中点击右上角的加号按钮。2接下来在弹出的窗口中点击发起群聊选项。3最后在页面中勾选要建群的联系人后点击完成即可。补充:微信群聊是什么东西1微信聊天群就是腾讯企开发的一种多人聊天沟通交流的网络平台,我们可以借助互联网迅速传送语音信息、短视频、高清图片和文字内容。还可以借助微信与朋友开展形式上更为丰富多彩的类似短消息、手机彩信等形式的

Lambda表达式是无名称的匿名函数,其语法为:(parameter_list)->expression。它们具有匿名性、多样性、柯里化和闭包等特点。实际应用中,Lambda表达式可用于简洁地定义函数,如求和函数sum_lambda=lambdax,y:x+y,并通过map()函数应用于列表来进行求和操作。


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

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

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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
