草庐IT

php - 有没有更好的方法来设计这个 PHP 函数?

coder 2024-04-25 原文

它有效,但也许你们中有人知道是否有更好的方法来实现我正在尝试做的事情:

<?php if ($md_options->mobileversion == true) {;?><!-- Ok Mobile mode is ON -->
    <?php if (detectdevice() != 'true') {;?><!-- Now if we are NOT on a mobile let's start! -->
        <?php if ((is_single()) && ($metaBox == true)) {;?><!-- If is Single and 360Panorama is set let's show panorama -->
            <?php include('360ok.php');?><!-- Houston we have a panorama! -->
        <?php } elseif ((!is_single()) || ($metaBox != true)){;?><!-- Each page that hasn't set a panorama will check... -->
            <?php if ($md_options->slideorvideo == 'true') {;?><!-- Do you want to show a slideshow? -->
                <?php include('slideshowhome.php');?><!-- What a nice slideshow! -->
            <?php } elseif ($md_options->slideorvideo == 'false') {;?><!-- You prefer a video? let's show it! -->
                <?php include("video/video.php");?>
            <?php };?><!-- Closes video option -->
            <?php if ($md_options->slivideoposition != 'center'){;?><!-- Let's show the post next to the video or slideshow if it is possible -->
                <?php include('postheader.php');?>
            <?php };?><!-- Closes POSTHEADER -->
        <?php };?><!-- Close Else if !is_single || $metabox != true -->
    <?php };?><!-- Closes the function that checks if we are on a mobile or not -->
<?php } elseif ($md_options->mobileversion != true) {;?><!-- Closes mobile version ON/OFF -->
    <?php if ((is_single()) && ($metaBox == true)) {;?><!-- If is Single and 360Panorama is set let's show panorama -->
        <?php include('360ok.php');?><!-- Houston we have a panorama! -->
    <?php } elseif ((!is_single()) || ($metaBox != true)){;?><!-- Each page that hasn't set a panorama will check... -->
        <?php if ($md_options->slideorvideo == 'true') {;?><!-- Do you want to show a slideshow? -->
            <?php include('slideshowhome.php');?><!-- What a nice slideshow! -->
        <?php } elseif ($md_options->slideorvideo == 'false') {;?><!-- You prefer a video? let's show it! -->
            <?php include("video/video.php");?>
        <?php };?><!-- Closes video option -->
        <?php if ($md_options->slivideoposition != 'center'){;?><!-- Let's show the post next to the video or slideshow if it is possible -->
            <?php include('postheader.php');?>
        <?php };?><!-- Closes POSTHEADER -->
    <?php };?><!-- Close Else if !is_single || $metabox != true -->
<?php };?><!-- If mobile mode is OFF this closes the IF -->

相同的代码(没有多余的 <?php ?> 标签):

<?php

if ($md_options->mobileversion == true) {
    if (detectdevice() != 'true') {
        if ((is_single()) && ($metaBox == true)) {
            include('360ok.php')
        } elseif ((!is_single()) || ($metaBox != true)) {
            if ($md_options->slideorvideo == 'true') {
                include('slideshowhome.php');
            } elseif ($md_options->slideorvideo == 'false') {
                include("video/video.php");
            }
            if ($md_options->slivideoposition != 'center') {
                include('postheader.php');
            }
        }
    }
} elseif ($md_options->mobileversion != true) {
    if ((is_single()) && ($metaBox == true)) {
        include('360ok.php');
    } elseif ((!is_single()) || ($metaBox != true)) {
        if ($md_options->slideorvideo == 'true') {
            include('slideshowhome.php');
        } elseif ($md_options->slideorvideo == 'false') {
            include("video/video.php");
        }
        if ($md_options->slivideoposition != 'center') {
            include('postheader.php');
        }
    }
}

?>

有没有更快的方法到达同一点?

最佳答案

首先,?>关闭标签表示 ; .所以写?>类似于写; ?> .添加另一个 ;之前它类似于写 ;; ?> .

您可以做很多事情来改善这一点。

  • 删除 <?php ... ?> .随便开一个<?php标记并用 ?> 关闭它在写完整个逻辑之后。
  • 替换 if (something == true) { ... } else if (something != true) { ... }逻辑与 if (something) { ... } else { ... }
  • 删除多余的括号。
  • 将逻辑提取到组成部分并尝试简化它。
  • 通过简单地存储其返回值来停止一遍又一遍地调用相同的函数。

据我所知,代码的目的是在某些情况下包括以下之一:“360ok.php”、“slideshowhome.php”或“video/video.php”和“postheader.php”。您可以以此为基础的逻辑。

简化逻辑使其更具可读性:

<?php

if ($md_options->mobileversion) {
    if (detectdevice() != 'true') {
        if (is_single() && $metaBox) {
            include('360ok.php');
        } else {
            if ($md_options->slideorvideo == 'true') {
                include('slideshowhome.php');
            } elseif ($md_options->slideorvideo == 'false') {
                include('video/video.php');
            }
            if ($md_options->slivideoposition != 'center') {
                include('postheader.php');
            }
        }
    }
} else {
    if (is_single() && $metaBox) {
        include('360ok.php');
    } else {
        if ($md_options->slideorvideo == 'true') {
            include('slideshowhome.php');
        } elseif ($md_options->slideorvideo == 'false') {
            include('video/video.php');
        }
        if ($md_options->slivideoposition != 'center') {
            include('postheader.php');
        }
    }
}

?>

据此我了解到有2种情况:

  • 如果$md_options->mobileversiondetectdevice() != 'true'
  • 如果不是$md_options->mobileversion .

在每种情况下,逻辑都是相同的,因此我们可以进一步简化它:

if (!$md_options->mobileversion || detectdevice() != 'true') {
    if (is_single() && $metaBox) {
        include('360ok.php');
    } else {
        if ($md_options->slideorvideo == 'true') {
            include('slideshowhome.php');
        } elseif ($md_options->slideorvideo == 'false') {
            include('video/video.php');
        }
        if ($md_options->slivideoposition != 'center') {
            include('postheader.php');
        }
    }
}

此外,如果 $md_options->slideorvideo 的值可以是字符串 'true''false' ,那么我们可以进一步简化它:

if (!$md_options->mobileversion || detectdevice() != 'true') {
    if (is_single() && $metaBox) {
        include('360ok.php');
    } else {
        if ($md_options->slideorvideo == 'true') {
            include('slideshowhome.php');
        } else {
            include('video/video.php');
        }
        if ($md_options->slivideoposition != 'center') {
            include('postheader.php');
        }
    }
}

清晰简洁的代码通常比过于冗长的代码更具可读性和可维护性。此外,您没有理由不将注释作为 PHP 注释包含在内,而只包含暗示包含某个文件的原因的相关注释。例如:

// only do this if mobile mode is ON and we're not on a mobile,
// or if mobile mode is OFF
if (!$md_options->mobileversion || detectdevice() != 'true') {
    if (is_single() && $metaBox) {
        // if is single and 360 panorama is set, let's show panorama
        include('360ok.php');
    } else {
        // show the slideshow or the video, according to the user's preferences
        if ($md_options->slideorvideo == 'true') {
            include('slideshowhome.php');
        } else {
            include('video/video.php');
        }

        // if possible, let's also show the post next to it
        if ($md_options->slivideoposition != 'center') {
            include('postheader.php');
        }
    }
}

如您所见,实际上不需要 else 旁边的额外注释例如,因为您可以流利地阅读代码和相关注释。任何额外的注释只会妨碍并降低重要注释的可读性。

关于php - 有没有更好的方法来设计这个 PHP 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8029336/

有关php - 有没有更好的方法来设计这个 PHP 函数?的更多相关文章

  1. ruby - 如何使用 Nokogiri 的 xpath 和 at_xpath 方法 - 2

    我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div

  2. ruby - 如何从 ruby​​ 中的字符串运行任意对象方法? - 2

    总的来说,我对ruby​​还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用

  3. ruby - 为什么我可以在 Ruby 中使用 Object#send 访问私有(private)/ protected 方法? - 2

    类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc

  4. ruby - Facter::Util::Uptime:Module 的未定义方法 get_uptime (NoMethodError) - 2

    我正在尝试设置一个puppet节点,但ruby​​gems似乎不正常。如果我通过它自己的二进制文件(/usr/lib/ruby/gems/1.8/gems/facter-1.5.8/bin/facter)在cli上运行facter,它工作正常,但如果我通过由ruby​​gems(/usr/bin/facter)安装的二进制文件,它抛出:/usr/lib/ruby/1.8/facter/uptime.rb:11:undefinedmethod`get_uptime'forFacter::Util::Uptime:Module(NoMethodError)from/usr/lib/ruby

  5. ruby-on-rails - Rails - 子类化模型的设计模式是什么? - 2

    我有一个模型:classItem项目有一个属性“商店”基于存储的值,我希望Item对象对特定方法具有不同的行为。Rails中是否有针对此的通用设计模式?如果方法中没有大的if-else语句,这是如何干净利落地完成的? 最佳答案 通常通过Single-TableInheritance. 关于ruby-on-rails-Rails-子类化模型的设计模式是什么?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.co

  6. Ruby 方法() 方法 - 2

    我想了解Ruby方法methods()是如何工作的。我尝试使用“ruby方法”在Google上搜索,但这不是我需要的。我也看过ruby​​-doc.org,但我没有找到这种方法。你能详细解释一下它是如何工作的或者给我一个链接吗?更新我用methods()方法做了实验,得到了这样的结果:'labrat'代码classFirstdeffirst_instance_mymethodenddefself.first_class_mymethodendendclassSecond使用类#returnsavailablemethodslistforclassandancestorsputsSeco

  7. ruby - 难道Lua没有和Ruby的method_missing相媲美的东西吗? - 2

    我好像记得Lua有类似Ruby的method_missing的东西。还是我记错了? 最佳答案 表的metatable的__index和__newindex可以用于与Ruby的method_missing相同的效果。 关于ruby-难道Lua没有和Ruby的method_missing相媲美的东西吗?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/7732154/

  8. ruby-on-rails - Rails 3.2.1 中 ActionMailer 中的未定义方法 'default_content_type=' - 2

    我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer

  9. ruby-on-rails - rails 目前在重启后没有安装 - 2

    我有一个奇怪的问题:我在rvm上安装了ruby​​onrails。一切正常,我可以创建项目。但是在我输入“railsnew”时重新启动后,我有“程序'rails'当前未安装。”。SystemUbuntu12.04ruby-v"1.9.3p194"gemlistactionmailer(3.2.5)actionpack(3.2.5)activemodel(3.2.5)activerecord(3.2.5)activeresource(3.2.5)activesupport(3.2.5)arel(3.0.2)builder(3.0.0)bundler(1.1.4)coffee-rails(

  10. ruby - Highline 询问方法不会使用同一行 - 2

    设置:狂欢ruby1.9.2高线(1.6.13)描述:我已经相当习惯在其他一些项目中使用highline,但已经有几个月没有使用它了。现在,在Ruby1.9.2上全新安装时,它似乎不允许在同一行回答提示。所以以前我会看到类似的东西:require"highline/import"ask"Whatisyourfavoritecolor?"并得到:Whatisyourfavoritecolor?|现在我看到类似的东西:Whatisyourfavoritecolor?|竖线(|)符号是我的终端光标。知道为什么会发生这种变化吗? 最佳答案

随机推荐