Home  >  Article  >  Backend Development  >  PHP code optimization

PHP code optimization

不言
不言Original
2018-05-03 14:41:071653browse

This article mainly introduces the code optimization of PHP, which has certain reference value. Now I share it with everyone. Friends in need can refer to it

  • Locating slow code locations

    • ##Use xdebug

    • Write your own code to calculate the execution time and gradually locate the slow code location. Example:

      <?php  
      //程序运行时间
      $starttime = explode(&#39; &#39;,microtime());
      echo microtime();
      /*········以下是代码区·········*/
      for($i=0;$i<1000000;$i++){
      $i;
      }
      /*········以上是代码区·········*/
      //程序运行时间
      $endtime = explode(&#39; &#39;,microtime());
      $thistime = $endtime[0]+$endtime[1]-($starttime[0]+$starttime[1]);
      $thistime = round($thistime,3);
      echo "本网页执行耗时:".$thistime." 秒。".time();
      ?>
  • Check the slow code

    • The query speed is slow

    • Whether to add an index, if no index is used Add index;

    • There is an index but the query is slow. Check whether the index is used in the query. If the index is not used, optimize the sql statement

    • Code operation Logical problem-> Modify the code

    • Database query problem

    • Other problems, if caching is possible, add cache, if asynchronous can be added, add asynchronous


The above is the detailed content of PHP code optimization. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn