search

Home  >  Q&A  >  body text

PHP判断后停止执行后面的代码.用RETURN和EXIT哪个好?

IF里的代码执行完后就停止执行后面所有的代码.用return; 还是exit;

阿神阿神2966 days ago955

reply all(1)I'll reply

  • 学习ing

    学习ing2016-11-08 16:03:49

    return 是一个返回值,而exit或exit()都是终止程序,不往下执行,exit()可以这样用:exit('数据错误')

    reply
    0
  • Cancelreply