From:             diepiapaopolopo at hotmail dot com
Operating system: All
PHP version:      5.2.9
PHP Bug Type:     Feature/Change Request
Bug description:  Swallowing a newline immediately following a closing tag is a 
poor idea

Description:
------------
Can the decision to call bugs #13954 and #21891 bogus be revisited,
please?

Reproduce code:
---------------
<?
$quality="red";
?>
<p>Your apple is more <?=$quality?>
than mine.</p>

Expected result:
----------------
Your apple is more red than mine.

Actual result:
--------------
Your apple is more redthan mine.


Even though the behavior is documented
(http://www.php.net/manual/en/language.basic-syntax.instruction-separation.php),
swallowing a newline that immediately follows a closing tag seems to be a
pretty poor idea, especially if the rationale is to pretty up formatting as
is alluded to (http://bugs.php.net/bug.php?id=13954) by jeroen.

Swallowing the newline is a surprise to anyone who encounters this bug
(yes, bug). Additionally, it can easily lead to malformatted output (see
sample included in this report). This malformatting can be difficult to
detect and the solution--adding a trailing space after every closing tag
(seriously???)--is a kludge through and through. This malformatting becomes
catastrophic if you're using PHP to generate input to another program, as
is the case for many of the people that have discussed the issue over the
years.

I realize this discussion has been going on for nearly a decade. I have to
assume this topic has become largely a political discussion, rather than a
problem solving one, because the problem hasn't been solved yet.

In the spirit of problem solving, several people have suggested adding a
setting to php.ini to re-enable the current behavior, which should
eliminate the need to refactor any scripts affected by the correction. In
any case, the current behavior should not be the default behavior.

-- 
Edit bug report at http://bugs.php.net/?id=47707&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=47707&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=47707&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=47707&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=47707&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=47707&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=47707&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=47707&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=47707&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=47707&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=47707&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=47707&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=47707&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=47707&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=47707&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=47707&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=47707&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=47707&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=47707&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=47707&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=47707&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=47707&r=mysqlcfg

Reply via email to