On 5/18/07, Steve <[EMAIL PROTECTED]> wrote:
Not that it really matters in this scenario, but if you rename a file to
.phps you should be able to navigate to it in a web browser and have nice,
highlighted syntax. It's pretty nice for internally viewing a file, but
obviously I wouldn't recommend doing this with live files that contain
sensitive information.

Or just a symlink from .phps to .php for the file :)

Tijnema


"James Lockie" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> This almost works but all my < and > are replaced with "".
>
>        // open this file to show the source
>        if (($fh = fopen( __FILE__, 'r' )) === FALSE){
>            die ('Failed to open source file (' . $_FILE_ . ') for
> reading!');
>        } else {
>            $tags  = array( "<", ">" );
>            $safe_tags = array( "\\<", "\\>" );
>
>            print "<pre>\n";
>
>            // read the file line by line
>            while (! feof( $fh )) {
>                $currentLine = fgets( $fh, 255 );
>                $noTags = str_replace( $tags, $safeTags, $currentLine );
>                print $noTags;
>            }
>
>            fclose( $fh );
>            print "</pre>\n";
>        }

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to