51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

网站速度第4部分:PHP速度编程

速度编程并不是大多数程序员所想的。他们通常首先考虑并且通常仅考虑的是使其正常运行。有时人们会谈论重构以减少代码量,但这再次通常仅适用于那些拥有太多金钱和时间的奢侈品的人。

我希望我有这么奢侈,能够花两倍的时间在一个问题上,以提供完美的解决方案。实际上,我不是大部分时间都在,因为我在那里有很多新客户,是否生产其他产品,或者是否有幸拥有一个财大气粗的客户。

为了解决这些问题,我脑中存储了许多方法,这些方法可以让我第一次选择最佳路径(我希望!)。我将与您分享这些最佳做法,以便您可以做同样的事情,甚至更好。如果您有关于编码的快速建议,请发表评论,我将其附加到这篇文章中。

另外,请注意,这不是详尽的清单。这更多地是您应该使用自己喜欢的编码语言考虑的事情的指针。尽管这是专门针对PHP的,但我已尝试使其尽可能通用,以使所有编码器(无论使用哪种语言)都可以受益。

制作IF ELSE

IF可能是所有编程语言中最常用的语句,并且我认为是菜鸟程序员最常用的语句(嘿,我曾经一次,我记得我的代码)。

常见的IF ELSE用法

          if ( $something == true ){
              $value = 'yes';
          }else{
              $value = 'no';
          }

现在只使用 IF

          $value = 'no';
          if ( $something == true ){
              $value = 'yes';
          }

如您所见,所有已完成的工作就是将值预设为"否",并且只有在某些情况为真时才更改为"是"。两位代码的结果相同,一位代码更少。

如果if语句中只有1条命令,则可以进行更多操作。当一行只有一行时,PHP不需要大括号。

          $value = 'no';
          if ( $something == true )
              $value = 'yes';

三元运算符

我们可以更进一步,并拥有三元运算符。这些是数学指令,可以像是一样回答是/否IF

IF 呈现为三元运算

          $value = ( $something == true ) ? "yes" : "no" ;

同样,同样的IF ELSE说法,变得更小。它所做的是检查方括号内的语句是true还是false,如果为true,则将值设置为" yes",如果为false,则将值设置为" no"。

三元运算符的语法

          output = ( true/false condition ) ? true-value : false-value ;

不一定要具有输出,因为true或false值可以调用函数而不返回值。

使用范围创建数字数组

人们通常会在其中编码只有一堆数字的数组,以便他们可以遍历它。

PHP代码创建选择下拉列表

          // selected item value
          $item = 12;
          // create array of numbers
          $array_of_numbers = array( 2,4,6,8,10,12,14,16 );
          // start the select 
          echo "<select name='myselect' >";
          foreach ($array_of_numbers as $number){
          // use terany operator to compare $number and $item, if the same make $selected = "selected"
          $selected = ( $number == $item ) ? "selected" : "" ;
          // echo option, with details filled in
          echo "<option value='" . $number . "' " . $selected . " >" . $number . "</option>";
          }
          echo "</select>";

现在同一件事随着范围变短

          // selected item value
          $item = 12;
          // start the select
          echo "<select name='myselect' >";
          foreach ( range(2,16,2) as $number){
          // use ternary operator to compare $number and $item, if the same make $selected = "selected"
          $selected = ( $number == $item ) ? "selected" : "" ;
          // echo option, with details filled in
          echo "<option value='" . $number . "' " . $selected . " >" . $number . "</option>";
          }
          echo "</select>";

范围是一件非常方便的事情,因为它会创建一个数字数组(整数)。它在php中具有以下语法:

          range($start_number, $end_number, $increment);

唯一必需的必填项是开始和结束号,增量默认为1,但可以是您喜欢的任何数字。

范围函数在大多数语言中都可用,但不幸的是,在开箱即用的Java语言中不可用,因此要在代码中进行相同的保存,最好使用FOR循环

FOR 循环版本

    // selected item value
          $item = 12;
          // start the select
          echo "<select name='myselect' >";
          for($number = 2; $number <= 16; $number = $number + 2){
          // use ternary operator to compare $number and $item, if the same make $selected = "selected"
          $selected = ( $number == $item ) ? "selected" : "" ;
          // echo option, with
          echo "<option value='" . $number . "' " . $selected . " >" . $number . "</option>";
          }
          echo "</select>";

涡轮增压FOR循环

许多人喜欢使用for循环,因为他们认为循环比循环快foreach。尽管这通常是正确的,但它并不能提供灵活性,foreach而且编程技术不当会导致速度变慢

较慢的FOR循环

         // some text as a string
            $text="We love SpeckyBoy";
            // loop through all the characters
            for($i=0; $i < strlen($text); $i++){
                // look for the o in the text string at the position of $i using a ternary operator
                // echo true or false value as needed
                echo ( substr($text,$i,1) == 'o' ) ? "its an o" : "no o here";
            }

更快的FOR循环

          // some text as a string
            $text="We love SpeckyBoy";
            // get the length of the string
            $length = strlen($text);
            // loop through all the characters
            for($i=0; $i < $length ; $i++){
                // look for the o in the text string at the position of $i using a ternary operator
                // echo true or false value as needed
                echo ( substr($text,$i,1) == 'o' ) ? "its an o" : "no o here";
            }

第二个for循环速度更快,因为它不需要在每次循环运行时都重新检查字符串长度。第一个循环将使用所使用的文本将字符串长度检查17次

使代码更易于维护和更快

重新访问它时,我的noob代码经常遇到相同的问题。代码全部写在一行上,而且很长。以下面的代码为例:

          $html = "<input name='" . $name . "' id='" . $id . "' value='" . $value . "' class='" . $theclass . "' type='checkbox' " . $checked . " />";
          echo $html;

它工作得很好,并且对任何实现都可以,但是存在一些问题。例如,如果类为空,则对空的类设置进行编码很浪费。尽管这可能与Javascript实现没有太大区别,但是由于这是使用PHP在服务器上生成的,因此您会向客户端浏览器发送不需要的额外字节。当然,在进行AJAX调用和等待答复时,这将发挥最大的作用,额外的字节可能会带来更大的影响。

维护更简单的方法

       $attributes = " name='" . $name  . "' ";
          $attributes .= " id='" . $id  . "' ";
          $attributes .= " value='" . $value  . "' ";
          $attributes .= ($theclass != '' )?  " class='" . $theclass  . "' " : "" ;
          $attributes .= ($selected == $value )?  " checked " : "" ;
          $html = "<input type='checkbox' " . $attributes  . " />";
          echo $html;

如您所见,在服务器端使用起来更容易阅读,更易于维护,并且使用它会产生更少的HTML代码。

不要只回显最终输出的每一行

echo与将每一行写入变量相比,与将每一行写入变量相比,每行或将控制权传递回HTML 都容易得多,但是将输出首先写入变量并仅在最后回显是更快的处理方式。

做事的简单方法,有一些变化

    echo "<h2>" . $title . "</h2>"; ?>
    <small><?php echo date(); ?><small>

服务器更友好的处理方式

    $output = "<h2>" . $title . "</h2>";
    $output .= "<small>" . date() . "<small>";
    echo $output;

好的,这是您应该做的非常简单的示例,因为它只有2行,然后输出。

围捕

这是一堆非常简短的内容,可帮助您更快更轻松地维护PHP编码。当然,您可以做更多的事情来减少使用的代码量或运行速度。

这些技术中的大多数都可以应用到其他编程语言中,因此,当您使用Javascript或.NET进行编码时,请三思而后行,将会使事情变得更快。

赞(0)
未经允许不得转载:工具盒子 » 网站速度第4部分:PHP速度编程