使用空格/制表符“美化”应用程序

时间:2019-04-01 18:46:58

标签: php laravel

我想知道我的PHP应用程序中使用制表符/空格是否会以任何方式降低性能?

所以在手之前看起来像这样

task force1(bit sel, int value);
  static int values[1 << $bits(sel)]; // <- Make sure no matter the width of sel, there are enough places in the array, could just be values[2]
  values[sel] = value;
  if(sel == 0) begin
    $display("[%0t]:forcing a to %0d", $stime, value);
    force dut1.a = values[0];
  end
  else begin
    $display("[%0t]:forcing b to %0d", $stime, value);
    force dut1.b = values[1];
  end
endtask

现在我已将其更新为此

Route::get('/video/{id}', 'VideoController@view');
Route::get('/library/videos', 'VideoController@show');

0 个答案:

没有答案