php中5中常用优化写法对比
php  /  管理员 发布于 4年前   684
php中5中常用优化写法对比,希望对你有帮助
1.PHP删除数组中空值元素,可以直接用array_filter函数
foreach( $arr as $k=>$v){ if( !$v ) unset( $arr[$k] ); } 改 array_filter($arr)
2.foreach循环或数组函数(array_ *)可以处理空数组
$items = [];
// ...
if (count($items) > 0) {
foreach ($items as $item) {
// process on $item ...
}
}
改成
$items = [];
// ...
foreach ($items as $item) {
// process on $item ...
}
3.将方法的所有内容封装在if语句中
function foo(User $user) {
if (!$user->isDisabled()) {
// ...
// long process
// ...
}
}
改
function foo(User $user) {
if ($user->isDisabled()) {
return;
}
// ...
// long process
// ...
}
4.我们经常需要检查是否已定义变量(而不是null)。在PHP中,我们可以使用isset函数来做到这一点。而且,魔术,它可以采用多个参数!
$a = null;
$b = null;
$c = null;
// ...
if (!isset($a) || !isset($b) || !isset($c)) {
throw new Exception("undefined variable");
}
// or
if (isset($a) && isset($b) && isset($c) {
// process with $a, $b et $c
}
// or
$items = [];
//...
if (isset($items['user']) && isset($items['user']['id']) {
// process with $items['user']['id']
}
改
$a = null;
$b = null;
$c = null;
// ...
if (!isset($a, $b, $c)) {
throw new Exception("undefined variable");
}
// or
if (isset($a, $b, $c)) {
// process with $a, $b et $c
}
// or
$items = [];
//...
if (isset($items['user'], $items['user']['id'])) {
// process with $items['user']['id']
}
5.结合使用echo方法和sprintf,我们可以简单地使用printf方法
$name = "John Doe";
echo sprintf('Bonjour %s', $name);
改
$name = "John Doe";
printf('Bonjour %s', $name);
6.in_array和array_keys的联合使用,可以使用array_key_exists替换。
$items = [
'one_key' => 'John',
'search_key' => 'Jane',
];
if (in_array('search_key', array_keys($items))) {
// process
}
改
$items = [
'one_key' => 'John',
'search_key' => 'Jane',
];
if (array_key_exists('search_key', $items)) {
// process
}
收藏一下啦
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号