Home » PHP » PHP_Beautifier » Bug #7311
rewrite doubel quoted strings
Details
| Request #7311 | rewrite doubel quoted strings |
|---|---|
| Submitted | 2006-04-05 12:06 UTC |
| From | pear at sebastianmendel dot de |
| Status | Bogus |
| Package | PHP_Beautifier |
| PHP Version | 5.1.2 |
| OS | Windows |
| 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?