You are here

function example_time_limit in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/tests/old/samples/example.module \example_time_limit()

File

coder_upgrade/tests/old/samples/example.module, line 250

Code

function example_time_limit() {

  // set_time_limit() -- Change the next line but leave this alone
  $time_limit = 5;
  set_time_limit($time_limit);
  if (set_time_limit($time_limit) > 5) {

    //
  }
}