PageRenderTime 58ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/demos/Cycles/While2.php

http://orionphp.googlecode.com/
PHP | 11 lines | 8 code | 3 blank | 0 comment | 1 complexity | 7bc6c8e23a2c2ae5cd1c3a4d4bb7a872 MD5 | raw file
Possible License(s): MIT
  1. print('Start...');
  2. $i = 0;
  3. $d = 0;
  4. while ($i<1000000){
  5. $i++;
  6. $d = $d + cos($i);
  7. }
  8. print($d);