douren9077 2011-02-18 07:32
浏览 60
已采纳

检查多个字符串是否为非空的最佳方法(在php中)

I have several strings which may or may not be empty. If any of them are non-empty, a mysql insertion should be called.

I've coded it simply, but was thinking about the fastest method of testing if ANY of them is non-empty.

$a = something;
$b = something;
$c = something;

Options

  1. if($a!="" || $b!="" || $c!="")
  2. if($a.$b.$c!="")
  3. if(strlen($a) || strlen($b) || strlen($c))
  4. if(strlen($a)>0 || strlen($b)>0 || strlen($c)>0)
  5. if(strlen($a.$b.$c))
  6. if(strlen($a.$b.$c)>0)
  • 写回答

3条回答 默认 最新

  • duafagm1066 2011-02-18 07:35
    关注

    I would do something like this:

    if (!$a || !$b || !$c){
       ...
    }
    

    There is no overhead of a function like strlen etc. The ! is good bet there.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度