dongzongpeng6474 2014-04-17 09:56
浏览 20
已采纳

修复遗留代码而不破坏所有内容

I have some code like this :

somefunc($row['some_key']);

Sometimes, $row might not have 'some_key' which logs an Undefined index warning.

How do you fix this warning without changing the current behavior of the program ?

I know I need to fix the problem to the source but this is a legacy codebase T_T

My attemp

if(!isset($row['some_key'])){
    somefunc(null);
}
else{
    somefunc($row['some_key']);
}

Is this equivalent ?

  • 写回答

3条回答 默认 最新

  • dozug64282 2014-04-17 10:01
    关注

    Sure, it is equivalent, but you can be more terse (if you're interested) with a ternary operator (http://www.php.net/manual/en/language.operators.comparison.php you have to scroll a little, unfortunate, they don't have any anchor for it)...

    somefunc( (isset($row['some_key'])) ? $row['some_key'] : null );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 没输出运行不了什么问题
  • ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部