doupike2351 2009-07-22 14:22
浏览 30

if else条件不在PHP中调用函数

if($process->g_User() && $process->g_Pass()){
         if($process->LdapConn()){
             if($process->LdapBind()){

                    return 'google';

             }else{
                procLogin();
         }
     }

     }

If my condition fails, it must call the procLogin() function but its not calling... the ProcLogin has just an echo...

if($process->g_User() && $process->g_Pass() && $process->LdapConn() 
   && process->LdapBind()) {
    return 'google';

When using this... it does not even call the google...

But in my latter code, at least it was calling...

My Requirement is... if the username and password is wrong, then it should fail regardless the connection is established or not.

  • 写回答

4条回答 默认 最新

  • douhuanglou1445 2009-07-22 14:26
    关注

    Are you sure $process->LdapBind() is returning false and not $process->LdapConn()?

    If I copy your example replacing the functions with true or false, it works just as expected when only $process->LdapBind() being false.

    Maybe you want:

    if($process->g_User() && $process->g_Pass()){
             if($process->LdapConn()  &&  $process->LdapBind()){
                        return 'google';
                 }else{
                         procLogin();
             }
         }
    
         }
    
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效