PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » PHP » PHP_Beautifier » Bug #7311

rewrite doubel quoted strings

Details

Request #7311rewrite doubel quoted strings
Submitted2006-04-05 12:06 UTC
Frompear at sebastianmendel dot de
StatusBogus
PackagePHP_Beautifier
PHP Version5.1.2
OSWindows
Roadmaps(Not assigned)

Comments

[2006-04-05 12:06 UTC] pear at sebastianmendel dot de

Description:
------------
add an option to rewrite double quoted strings to use concat-operator

Expected result:
----------------
"text \"text\" " . $var . " 'text' " . $var . " text"

or at best:

'text "text" ' . $var . ' \'text\' ' . $var . ' text'

Actual result:
--------------
"text \"text\" $var 'text' $var text"

[2006-06-06 03:44 UTC] clbustos at php dot net

Sorry, but your problem does not imply a bug in PEAR itself. For a
list of more appropriate places to ask for help using PEAR, please
visit http://pear.php.net/support/ as this bug system is not the
appropriate forum for asking support questions.

Thank you for your interest in PEAR.

This is a coder issue. What about variables inside quotes? Should the package put outside of the quotes?