I favor php_html_puts also due to maintability reasons.
    Please consider this part of code from zend_html_puts:

            && !(((ptr+1)>=end) || (*(ptr+1)==' ')) /* next is not a space */
            && !((ptr==s) || (*(ptr-1)==' '))) /* last is not a space */ {

    And contrast it with the inherent beauty of php_html_puts.

> I'd *really* like to avoid having two copies of the same code,
> though.  Please remove the duplicated implementation...

    Ok, I'll implement the solution I posted earlier and make
    zend_html_puts a function pointer.

    - Sascha                                     Experience IRCG
      http://schumann.cx/                http://schumann.cx/ircg


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to