feedback, comments on this php-delimiter scrubbing program?

Mel Flynn mel.flynn+fbsd.questions at mailing.thruhere.net
Tue Jun 16 02:57:48 UTC 2009


On Monday 15 June 2009 17:21:16 Gary Kline wrote:

> Encl: dephp.c, test
         case '?':
            ch = getchar();
            while (1)
            {
               if (ch == '?' && (ch = getchar()) == '>')
               {
                  break;
               } 
               else
               {
                  ch = getchar();
               }
            }
            break;

As has been hinted before you're not handling the EOF case. Files like:
<?php
class foo
{
	function __construct() { echo 'foo'; };
};

Are perfectly valid php files and actually preferred for included files, 
rather then a terminating ?>, because one can start filling the output by 
trailing whitespace before EOF and thus not set any header() anymore. The 
above code will wait indefinitely for the next char or spin like mad if you're 
using non-blocking IO.

You should really take the pointers from Jeffrey Goldberg and record states 
and decide based on the state, rather then inlined switch statements, if only 
for readability.

You're also in trouble with <?xml, but that's an entirely different beast and 
you might actually be doing the right thing from your usage perspective.
-- 
Mel


More information about the freebsd-questions mailing list