Re: [PHP-DEV] FW: comments in php

2001-01-13 Thread Roman Neuhauser
You can easily check this yourself: $t1 = time() ; for( $i = 0 ; $i < 100 ; $i++ ) ; echo ( time() - $t1 ) ; vs. $t1 = time() ; for( $i = 0 ; $i < 100 ; $i++ ) { /* * 1k of dummy text */ } echo ( time() - $t1 ) ; -- PHP Development Mailing List T

[PHP-DEV] FW: comments in php

2001-01-13 Thread mOrP
I am wondering, since php is an interpreted language, if it slows down the more comments are inside a sourcecode or not. thanx, mOrP -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact th