|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-17 04:45 UTC] jmoore@php.net
[2001-06-20 14:37 UTC] fabiankessler at usa dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 21:00:02 2025 UTC |
$a = 'foo'; $b = 'bar'; $c = (true) ? &$a : &$b; => syntax error, have to do if (true) { $c = &$a; } else { $c = &$b; } would be nice :)