Guest User

Untitled

a guest
Jun 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1.             $start = microtime( true );
  2.                 for ( $i = 0; $i < 1e6; $i++ )
  3.                 {
  4.                     ${"1fuckthepolice"} = 5;
  5.                 }
  6.             print( "Using {} with simple string: ".( microtime( true ) - $start )."<br/>" );
  7.            
  8.             $start = microtime( true );
  9.                 for ( $i = 0; $i < 1e6; $i++ )
  10.                 {
  11.                     $fuckThePolice = 5;
  12.                 }
  13.             print( "Using normal declaration: ".( microtime( true ) - $start ) );
Add Comment
Please, Sign In to add comment