PageRenderTime 55ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

/demos/Strings/String.php

http://orionphp.googlecode.com/
PHP | 8 lines | 6 code | 2 blank | 0 comment | 0 complexity | 57d4beb5854d47b3dbd8cc57354fa933 MD5 | raw file
Possible License(s): MIT
  1. print('Result: ');
  2. sleep(1);
  3. $d = 'my text';
  4. $c = 'any text';
  5. $str = $d .' '. $c;
  6. print( $str );