PHP #region for code folding?

前端 未结 15 1436
星月不相逢
星月不相逢 2021-01-31 14:06

Is there an equivilent of c#\'s #region in PHP?

15条回答
  •  闹比i
    闹比i (楼主)
    2021-01-31 14:53

    Workaround

    - if(true){
         // some code
      }
    

    so you can click on dash to collapse the section. Another possibility:

     $region = 'load_parameters';
     if($region == 'load_parameters'){
         // some code
     }
    

提交回复
热议问题