Guest User

Untitled

a guest
Jan 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $ php -d implicit_flush=off -r '$s=microtime(true); for($i=0;$i<100000;$i++) echo "omgwtf","bbq","\n"; echo microtime(true)-$s;' | tail -n 1
  2. 1.071463108062710
  3. $ php -d implicit_flush=off -r '$s=microtime(true); for($i=0;$i<100000;$i++) print "omgwtf"."bbq"."\n"; print microtime(true)-$s;' | tail -n 1
  4. 0.44555306434631
Add Comment
Please, Sign In to add comment