Date: 06/17/01
- Next message: sniper <email protected>: "[PHP-DEV] Bug #9639 Updated: Nasty bug in mod_mm.c causes CGI POST to stop working"
- Previous message: macfreak <email protected>: "[PHP-DEV] Bug #11450: Retrieving cookies in MSIE 5.0 returns an Apache Error 500 page"
- Next in thread: fabiankessler <email protected>: "[PHP-DEV] Bug #10309 Updated: feature request"
- Maybe reply: fabiankessler <email protected>: "[PHP-DEV] Bug #10309 Updated: feature request"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
ID: 10309
Updated by: jmoore
Reported By: fabiankessler <email protected>
Old-Status: Open
Status: Closed
Bug Type: Feature/Change Request
Operating system:
PHP Version: 4.0.4
Assigned To:
Comments:
try:
$c =& (true)? $a: $b;
might work better. Havnt tested it though.
Previous Comments:
---------------------------------------------------------------------------
[2001-04-12 15:26:32] fabiankessler <email protected>
$a = 'foo';
$b = 'bar';
$c = (true) ? &$a : &$b;
=> syntax error, have to do
if (true) {
$c = &$a;
} else {
$c = &$b;
}
would be nice :)
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=10309&edit=2
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: sniper <email protected>: "[PHP-DEV] Bug #9639 Updated: Nasty bug in mod_mm.c causes CGI POST to stop working"
- Previous message: macfreak <email protected>: "[PHP-DEV] Bug #11450: Retrieving cookies in MSIE 5.0 returns an Apache Error 500 page"
- Next in thread: fabiankessler <email protected>: "[PHP-DEV] Bug #10309 Updated: feature request"
- Maybe reply: fabiankessler <email protected>: "[PHP-DEV] Bug #10309 Updated: feature request"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

