Browse Source

Faster PHP plaintext (#4959)

Joan Miquel 6 years ago
parent
commit
46394ea86a
1 changed files with 2 additions and 5 deletions
  1. 2 5
      frameworks/PHP/php/plaintext.php

+ 2 - 5
frameworks/PHP/php/plaintext.php

@@ -1,10 +1,7 @@
 <?php
-//
 // Plaintext Test
-//
 
 // Set content type
-header("Content-type: text/plain");
+header('Content-type: text/plain');
 
-?>
-Hello, World!
+echo 'Hello, World!';