当前位置:Gxlcms > PHP教程 > PHP代码优化有关问题

PHP代码优化有关问题

时间:2021-07-01 10:21:17 帮助过:3人阅读

PHP代码优化问题
a.php
$title='3月5号开始会';
$classid='1';
$a='a';
$b='b';
$c='c';
$d='d';
?>

b.php
if (file_exists('a.php')) {
include('a.php');
$filesname= '文本文件.txt';
$txt = file($filesname);
foreach($txt as $row) {
$text = $text.$row.'
';}
$footer=file_get_contents('footer.html');

switch ( $classid )
{
case '1' :
$classname = '东区';
break;
case '2' :
$classname = '南区';
break;
case '3' :
$classname = '西区';
break;
case '4' :
$classname = '北区';
break;
default:
$classname = '其他';
};
}else {
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: /error.html" );
};
?>




<?php echo $title;?>















怎么优化PHP代码让浏览速度更快呢?
a.php 用数据方式比较好吧?


------解决方案--------------------
就这几行代码,没有优化的必要

优化了你也感觉不到效果
------解决方案--------------------
写在一个文件中,不要来什么嵌套包含就是最优化的了。
------解决方案--------------------
这代码最需要优化的地方就是格式了,不注意缩进的代码最难看了

人气教程排行