Changes between Initial Version and Version 1 of Ticket #17256, comment 1
- Timestamp:
- 04/27/2011 12:59:08 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17256, comment 1
initial v1 1 1 Those two lines of code are equivalent. The resulting string that's sent to the header() function is the same. 2 3 To test: 4 5 {{{ 6 var_dump( 'Content-type: ' . $mimetype ); 7 8 var_dump( "Content-Type: $mimetype" ); 9 }}}