<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.misc.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.highlight-file.php',
    1 => 'highlight_file',
    2 => 'Syntax highlighting of a file',
  ),
  'up' => 
  array (
    0 => 'ref.misc.php',
    1 => 'Misc. Functions',
  ),
  'prev' => 
  array (
    0 => 'function.halt-compiler.php',
    1 => '__halt_compiler',
  ),
  'next' => 
  array (
    0 => 'function.highlight-string.php',
    1 => 'highlight_string',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/misc/functions/highlight-file.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.highlight-file" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">highlight_file</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">highlight_file</span> &mdash; <span class="dc-title">Syntax highlighting of a file</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.highlight-file-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>highlight_file</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$filename</code></span>, <span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$return</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>): <span class="type"><span class="type"><a href="language.types.string.php" class="type string">string</a></span>|<span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></span></div>

  <p class="para rdfs-comment">
   Prints out or returns a syntax highlighted version of the code contained
   in <code class="parameter">filename</code> using the colors defined in the
   built-in syntax highlighter for PHP.
  </p>
  <p class="para">
   Many servers are configured to automatically highlight files
   with a <em>phps</em> extension. For example,
   <var class="filename">example.phps</var> when viewed will show the
   syntax highlighted source of the file. To enable this, add this
   line to the <var class="filename">httpd.conf</var>:
  </p>
  <div class="example-contents screen">
<div class="descriptioncode"><pre class="descriptioncode">AddType application/x-httpd-php-source .phps</pre>
</div>
  </div>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.highlight-file-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">filename</code></dt>
     <dd>
      <p class="para">
       Path to the PHP file to be highlighted.
      </p>
     </dd>
    
    
     <dt><code class="parameter">return</code></dt>
     <dd>
      <p class="para">
       Set this parameter to <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> to make this function return the
       highlighted code.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.highlight-file-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   If <code class="parameter">return</code> is set to <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>, returns the highlighted
   code as a string instead of printing it out. Otherwise, it will return
   <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> on success, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.highlight-file-changelog">
  <h3 class="title">Changelog</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Version</th>
       <th>Description</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>8.3.0</td>
       <td>
        The resulting HTML has changed.
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.highlight-file-notes">
  <h3 class="title">Notes</h3>
  <div class="caution"><strong class="caution">Caution</strong>
   <p class="para">
    Care should be taken when using the <span class="function"><strong>highlight_file()</strong></span>
    function to make sure that you do not inadvertently reveal sensitive
    information such as passwords or any other type of information that might
    create a potential security risk.
   </p>
  </div>
  <blockquote class="note"><p><strong class="note">Note</strong>: <p class="para">When the <code class="parameter">return</code> parameter
is used, this function uses internal output buffering so it cannot be used inside an
<span class="function"><a href="function.ob-start.php" class="function">ob_start()</a></span> callback function.</p></p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.highlight-file-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.highlight-string.php" class="function" rel="rdfs-seeAlso">highlight_string()</a> - Syntax highlighting of a string</span></li>
    <li><a href="misc.configuration.php#ini.syntax-highlighting" class="link">Highlighting INI directives</a></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>