给初学者的30条PHP最佳实践(荒野无灯)_php技巧
1,和PHP手册成为好朋友
2,打开Error Reporting
Error reporting 在 PHP 开发时是很有帮助的. 你可以在你代码中发现先前你没有发现的错误,因为并不是所有的BUG都会让程序运行不了的。当产品正式使用时,才有必要关掉错误报告,不然顾客看到一堆奇怪的字符不知道那是什么意思。
3,使用IDE
IDE (集成开发环境,Integrated Development Environments)对于开发者来说是很有帮助的工具.
荒野在这里推荐netbeans IDE 。
4. 试着使用一个PHP 框架
5.学习DRY方法
DRY 代表 Don't Repeat Yourself,它是一个有价值的编程概念,不管是什么语言。DRY编程,顾名思义,是确保你不写多余的代码。
6.使用空格缩进代码来提高可读性
7. “Tier” your Code
给你的应用程序分层,分成不同部位的不同组成部分的代码。这使得您可以轻松地在未来改变你的代码。 如常用的MVC模式。
8. 总是使用
9.使用有意义的,一致的命名约定
10.注释、注释、注释
11.安装MAMP/WAMP
12.给你的脚本限制运行时间
通常PHP脚本的运行时间被限制为30秒,超过这个时间PHP将抛出一个致命错误。
13.使用OOP
14.知道双引号和单引号的不同
15.不要在网站的根目录放phpinfo()
16.永远不要信任你的用户
17.加密存储密码
Rebuttal:
Keep in mind, however, that MD5 hashes have long since been compromised. They're absolutely more secure than not, but, with the use of an enormous “rainbow table,” hackers can cross reference your hash. To add even more security, consider adding a salt as well. A salt is basically an additional set of characters that you append to the user's string.
18.使用可视化数据库设计工具
如 DBDesigner 和 MySQL Workbench
19.使用输出缓冲
Rebuttal: Though not required, it's generally considered to be a good practice to go ahead and append the “ob_end_flush();” function as well to the bottom of the document. P.S. Want to compress the HTML as well? Simply replace “ob_start();” with “ob_start(‘ob_gzhandler')”;
Refer to this Dev-tips article for more information.
20.保护你的代码避免SQL注射
$username = mysql_real_escape_string( $GET['username'] );
$id = $_GET['id'];
$statement = $connection->prepare( "SELECT * FROM tbl_members WHERE id = ?" );
$statement->bind_param( "i", $id );
$statement->execute();
By using prepared statements, we never embed the user's inputted data directly into our query. Instead, we use the “bind_param” method to bind the values (and escaping) to the query. Much safer, and, notably, faster when executing multiple CRUD statements at once.
21.尝试ORM (object relational mapping)
ORM libraries for PHP like Propel, and ORM is built into PHP frameworks like CakePHP.
22.缓存数据库驱动页面
如:
// TOP of your script
$cachefile = 'cache/'.basename($_SERVER['SCRIPT_URI']);
$cachetime = 120 * 60; // 2 hours
// Serve from the cache if it is younger than $cachetime
if (file_exists($cachefile) && (time() - $cachetime include($cachefile);
echo "";
exit;
}
ob_start(); // start the output buffer
// Your normal PHP script and HTML content here
// BOTTOM of your script
$fp = fopen($cachefile, 'w'); // open the cache file for writing
fwrite($fp, ob_get_contents()); // save the contents of output buffer to the file
fclose($fp); // close the file
ob_end_flush(); // Send the output to the browser
23.使用缓存系统
24.验证Cookie数据
Cookie data, like any data passed on the Web, can be harmful. You can validate cookie data with either the htmlspecialchars() or mysql_real_escape_string().
25.使用静态文件缓存系统
如Smarty的是一个内置缓存的强大的模板系统。
26.分析你的代码
Profiling your code with a tool like xdebug can help you to quickly spot bottlenecks and other potential problems in your PHP code. Some IDEs like Netbeans have PHP profiling capabilities as well.
27.编码标准
如 Pear标准。
28. Keep Functions Outside of Loops
You take a hit of performance when you include functions inside of loops. The larger the loop that you have, the longer the execution time will take. Take the extra time and line of code and place the function outside of the loop.
Editor's Note: Think of it this way. Try to remove as many operations from the loop as possible. Do you really need to create that variable for every iteration of the loop? Do you really need to create the function each time? Of course not.
29.不要复制不额外的变量(事实上这一条值得怀疑,见下面的说明)
如:
$description = strip_tags($_POST['description']);
echo $description;
可以写成如下:
echo strip_tags($_POST['description']);
Rebuttal: In reference to the comment about “doubling the memory,” this actually is a common misconception. PHP implements “copy-on-write” memory management. This basically means that you can assign a value to as many variables as you like without having to worry about the data actually being copied. While it's arguable that the “Good” example exemplified above might make for cleaner code, I highly doubt that it's any quicker.
也就是说PHP实现“copy-on-write” 的内存管理方式,上面第一种代码并不会存在占用双倍内存的情况。因此Rebuttal严重怀疑第二种方式的代码是否真的比前面的快。
30.更新到最新版本的PHP
31.减少数据库查询次数
32.勇敢地提问
像StackOverflow等都是好去处。

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

在PHP中处理字符串转浮点数是开发过程中常见的需求,例如从数据库中读取到的金额字段是字符串类型,需要转换为浮点数进行数值计算。在这篇文章中,我们将介绍PHP中处理字符串转浮点数的最佳实践,并给出具体的代码示例。首先,我们需要明确一点,PHP中的字符串转浮点数有两种主要的方式:使用(float)类型转换或者使用(floatval)函数。下面我们将分别来介绍这两

Golang中字符串拼接的最佳实践是什么?在Golang中,字符串拼接是一种常见的操作,但是要考虑到效率和性能。在处理大量字符串拼接时,选择合适的方法可以显着提升程序的性能。下面将介绍几种Golang中字符串拼接的最佳实践,并附上具体的代码示例。使用strings包的Join函数在Golang中,使用strings包的Join函数是一种高效的字符串拼接方法。

在使用Go框架时,最佳实践包括:选择轻量级框架,如Gin或Echo。遵循RESTful原则,使用标准HTTP动词和格式。利用中间件简化任务,如身份验证和日志记录。正确处理错误,使用错误类型和有意义的消息。编写单元测试和集成测试,确保应用程序正常运行。

在Go语言中,良好的缩进是代码可读性的关键。在编写代码时,统一的缩进风格能够使代码更加清晰、易于理解。本文将探讨在Go语言中缩进的最佳实践,并提供具体的代码示例。使用空格而不是制表符在Go语言中,推荐使用空格而不是制表符进行缩进。这样可以避免不同编辑器中制表符宽度不一致导致的排版问题。缩进的空格数Go语言官方推荐使用4个空格作为缩进的空格数。这样可以使代码在

PHP最佳实践:避免goto语句的替代方案探讨在PHP编程中,goto语句是一种控制结构,它允许直接跳转到程序中的另一个位置。虽然goto语句可以简化代码结构和流程控制,但由于其使用容易导致代码混乱、可读性降低以及调试困难等问题,因此被广泛认为是一种不良实践。在实际开发中,为避免使用goto语句,我们需要寻找替代方法来实现相同的功能。本文将探讨一些替代方案,

Java框架适用于跨平台、稳定性和可扩展性至关重要的项目。对于Java项目,SpringFramework用于依赖注入和面向方面编程,最佳实践包括使用SpringBean和SpringBeanFactory。Hibernate用于对象关系映射,最佳实践是使用HQL进行复杂查询。JakartaEE用于企业应用开发,最佳实践是使用EJB进行分布式业务逻辑。

Laravel开发中.env文件的作用及最佳实践在Laravel应用程序开发中,.env文件被认为是非常重要的文件之一。它承载着一些关键的配置信息,例如数据库连接信息、应用程序环境、应用程序密钥等。在本文中,我们将深入探讨.env文件的作用以及最佳实践,并附上具体的代码示例。1..env文件的作用首先,我们需要了解.env文件的作用。在一个Laravel应

这篇文章将为大家详细讲解有关PHP开始新的或恢复现有的会话,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。PHP会话管理:启动新会话或恢复现有会话简介会话管理在php中至关重要,它允许您在用户会话期间存储和访问用户数据。本文将详细介绍如何在PHP中启动新会话或恢复现有会话。启动新会话该函数session_start()会检查是否存在会话,如果没有,则它会创建一个新的会话。它还可以读取会话数据并将其
