Guest User

Untitled

a guest
Jul 9th, 2013
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. $myString = outputFromMyVeryCleverFunction();
  2.  
  3. // This is the "supposedly" impossible thing that you keep alluding to
  4. $contentLength = strlen($myString);
  5.  
  6. header("Content-Type: application/pdf");
  7. header("Content-Length: $contentLength");
  8.  
  9. echo $myString;
Advertisement
Add Comment
Please, Sign In to add comment