Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #17256, comment 1


Ignore:
Timestamp:
04/27/2011 12:59:08 PM (12 years ago)
Author:
scribu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17256, comment 1

    initial v1  
    11Those two lines of code are equivalent. The resulting string that's sent to the header() function is the same.
     2
     3To test:
     4
     5{{{
     6var_dump( 'Content-type: ' . $mimetype );
     7
     8var_dump( "Content-Type: $mimetype" );
     9}}}