php3-list | 199901
Date: 01/20/99
- Next message: ChinaConnect: "[PHP3] where's the parser?"
- Previous message: Sander Pilon: "RE: [PHP3] Stupid Question: Interpolation and Associative arrays"
- Next in thread: Rasmus Lerdorf: "Re: [PHP3] automating variables #3"
- Reply: Rasmus Lerdorf: "Re: [PHP3] automating variables #3"
- Reply: Colin Viebrock: "RE: [PHP3] automating variables #3"
- Reply: Ashley Clark: "Re: [PHP3] automating variables #3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
thanks to Colin Viebrock
for answering: automating variables #2
here's another question:
i'd like to make the
$i variable increment
itself before the entire
variable $Q_$i is resolved.
so for instance, i need:
${"Q_".$i++} = "some string";
i'd like to do that instead of
this cheat:
$i++;
${"Q_".$i} = "some string";
-- PHP 3 Mailing List http://www.php.net/ To unsubscribe send an empty message to php3-unsubscribe <email protected> To subscribe to the digest list: php3-digest-subscribe <email protected> For help: php3-help <email protected> Archive: http://www.php.net/mailsearch.php3 List administrator: zeev-list-admin <email protected>
- Next message: ChinaConnect: "[PHP3] where's the parser?"
- Previous message: Sander Pilon: "RE: [PHP3] Stupid Question: Interpolation and Associative arrays"
- Next in thread: Rasmus Lerdorf: "Re: [PHP3] automating variables #3"
- Reply: Rasmus Lerdorf: "Re: [PHP3] automating variables #3"
- Reply: Colin Viebrock: "RE: [PHP3] automating variables #3"
- Reply: Ashley Clark: "Re: [PHP3] automating variables #3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

