foreach as list [message #184041] |
Tue, 03 December 2013 15:10 |
Mr Oldies
Messages: 241 Registered: October 2013
Karma: 0
|
Senior Member |
|
|
foreach ($six0 as list($a,$b)){
echo $a"\n";
echo $b"\n";
}
http://us1.php.net/manual/en/control-structures.foreach.php
Used as shown in the example, I get this:
Parse error: syntax error, unexpected T_LIST, expecting '&' or T_STRING or
T_VARIABLE or '$
Their example:
<?php
$array = [
[1, 2],
[3, 4],
];
foreach ($array as list($a)) {
// Note that there is no $b here.
echo "$a\n";
}
?>
The above example will output:
1
3
|
|
|
Re: foreach as list [message #184042 is a reply to message #184041] |
Tue, 03 December 2013 15:18 |
Christoph Michael Bec
Messages: 207 Registered: June 2013
Karma: 0
|
Senior Member |
|
|
richard wrote:
> foreach ($six0 as list($a,$b)){
> echo $a"\n";
> echo $b"\n";
>
> }
>
> http://us1.php.net/manual/en/control-structures.foreach.php
>
> Used as shown in the example, I get this:
> Parse error: syntax error, unexpected T_LIST, expecting '&' or T_STRING or
> T_VARIABLE or '$
>
> Their example:
>
> <?php
> $array = [
> [1, 2],
> [3, 4],
> ];
>
> foreach ($array as list($a)) {
> // Note that there is no $b here.
> echo "$a\n";
> }
> ?>
>
> The above example will output:
>
> 1
> 3
This feature is only available since PHP 5.5.0 (as noted in the manual)
-- which version do you use?
--
Christoph M. Becker
|
|
|
Re: foreach as list [message #184043 is a reply to message #184041] |
Tue, 03 December 2013 15:16 |
Mr Oldies
Messages: 241 Registered: October 2013
Karma: 0
|
Senior Member |
|
|
On Tue, 3 Dec 2013 10:10:59 -0500, richard wrote:
> foreach ($six0 as list($a,$b)){
> echo $a"\n";
> echo $b"\n";
>
> }
>
> http://us1.php.net/manual/en/control-structures.foreach.php
>
> Used as shown in the example, I get this:
> Parse error: syntax error, unexpected T_LIST, expecting '&' or T_STRING or
> T_VARIABLE or '$
>
> Their example:
>
> <?php
> $array = [
> [1, 2],
> [3, 4],
> ];
>
> foreach ($array as list($a)) {
> // Note that there is no $b here.
> echo "$a\n";
> }
> ?>
>
> The above example will output:
>
> 1
> 3
Well phooey.
Looks like hostgator doesn't have php 5.5.
Which I need to use "as list".
|
|
|
Re: foreach as list [message #184044 is a reply to message #184041] |
Tue, 03 December 2013 19:30 |
Richard Yates
Messages: 86 Registered: September 2013
Karma: 0
|
Member |
|
|
On Tue, 3 Dec 2013 10:10:59 -0500, richard <noreply(at)example(dot)com>
wrote:
> foreach ($six0 as list($a,$b)){
> echo $a"\n";
> echo $b"\n";
>
> }
>
> http://us1.php.net/manual/en/control-structures.foreach.php
>
> Used as shown in the example, I get this:
> Parse error: syntax error, unexpected T_LIST, expecting '&' or T_STRING or
> T_VARIABLE or '$
>
> Their example:
>
> <?php
> $array = [
> [1, 2],
> [3, 4],
> ];
>
> foreach ($array as list($a)) {
> // Note that there is no $b here.
> echo "$a\n";
> }
> ?>
>
> The above example will output:
>
> 1
> 3
echo $a"\n"; [needs a dot.]
|
|
|
Re: foreach as list [message #184045 is a reply to message #184044] |
Tue, 03 December 2013 19:40 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 12/3/2013 2:30 PM, Richard Yates wrote:
> On Tue, 3 Dec 2013 10:10:59 -0500, richard <noreply(at)example(dot)com>
> wrote:
>
>> foreach ($six0 as list($a,$b)){
>> echo $a"\n";
>> echo $b"\n";
>>
>> }
>>
>> http://us1.php.net/manual/en/control-structures.foreach.php
>>
>> Used as shown in the example, I get this:
>> Parse error: syntax error, unexpected T_LIST, expecting '&' or T_STRING or
>> T_VARIABLE or '$
>>
>> Their example:
>>
>> <?php
>> $array = [
>> [1, 2],
>> [3, 4],
>> ];
>>
>> foreach ($array as list($a)) {
>> // Note that there is no $b here.
>> echo "$a\n";
>> }
>> ?>
>>
>> The above example will output:
>>
>> 1
>> 3
>
> echo $a"\n"; [needs a dot.]
>
Actually, in the case, richard is correct (for this line of code,
anyway). Simple variables within double quotes are evaluated.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|
Re: foreach as list [message #184047 is a reply to message #184045] |
Tue, 03 December 2013 21:23 |
Scott Johnson
Messages: 196 Registered: January 2012
Karma: 0
|
Senior Member |
|
|
On 12/3/2013 11:40 AM, Jerry Stuckle wrote:
> On 12/3/2013 2:30 PM, Richard Yates wrote:
>> On Tue, 3 Dec 2013 10:10:59 -0500, richard <noreply(at)example(dot)com>
>> wrote:
>>
>>> foreach ($six0 as list($a,$b)){
>>> echo $a"\n";
>>> echo $b"\n";
>>>
>>> }
>>>
>>> http://us1.php.net/manual/en/control-structures.foreach.php
>>>
>>> Used as shown in the example, I get this:
>>> Parse error: syntax error, unexpected T_LIST, expecting '&' or
>>> T_STRING or
>>> T_VARIABLE or '$
>>>
>>> Their example:
>>>
>>> <?php
>>> $array = [
>>> [1, 2],
>>> [3, 4],
>>> ];
>>>
>>> foreach ($array as list($a)) {
>>> // Note that there is no $b here.
>>> echo "$a\n";
>>> }
>>> ?>
>>>
>>> The above example will output:
>>>
>>> 1
>>> 3
>>
>> echo $a"\n"; [needs a dot.]
>>
>
> Actually, in the case, richard is correct (for this line of code,
> anyway). Simple variables within double quotes are evaluated.
>
However as typical for richard he mistyped his code compared to the sample.
Sample: "$a\n"
Richards: $a"\n"
Scotty
|
|
|
Re: foreach as list [message #184058 is a reply to message #184041] |
Wed, 04 December 2013 00:48 |
Doug Miller
Messages: 171 Registered: August 2011
Karma: 0
|
Senior Member |
|
|
richard <noreply(at)example(dot)com> wrote in news:1lb2ueqjc0qju.xhszpol7p3t4.dlg@
40tude.net:
> foreach ($six0 as list($a,$b)){
> echo $a"\n";
> echo $b"\n";
>
> }
>
> http://us1.php.net/manual/en/control-structures.foreach.php
>
> Used as shown in the example, I get this:
> Parse error: syntax error, unexpected T_LIST, expecting '&' or T_STRING or
> T_VARIABLE or '$
No, you don't. If you get that, then you didn't use it as shown in the example.
>
> Their example:
>
> <?php
> $array = [
> [1, 2],
> [3, 4],
> ];
>
> foreach ($array as list($a)) {
> // Note that there is no $b here.
Which means that you didn't use it as shown in the example.
> echo "$a\n";
> }
> ?>
>
> The above example will output:
>
> 1
> 3
>
|
|
|
Re: foreach as list [message #184061 is a reply to message #184047] |
Wed, 04 December 2013 01:30 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma: 0
|
Senior Member |
|
|
On 12/3/2013 4:23 PM, Scott Johnson wrote:
> On 12/3/2013 11:40 AM, Jerry Stuckle wrote:
>> On 12/3/2013 2:30 PM, Richard Yates wrote:
>>> On Tue, 3 Dec 2013 10:10:59 -0500, richard <noreply(at)example(dot)com>
>>> wrote:
>>>
>>>> foreach ($six0 as list($a,$b)){
>>>> echo $a"\n";
>>>> echo $b"\n";
>>>>
>>>> }
>>>>
>>>> http://us1.php.net/manual/en/control-structures.foreach.php
>>>>
>>>> Used as shown in the example, I get this:
>>>> Parse error: syntax error, unexpected T_LIST, expecting '&' or
>>>> T_STRING or
>>>> T_VARIABLE or '$
>>>>
>>>> Their example:
>>>>
>>>> <?php
>>>> $array = [
>>>> [1, 2],
>>>> [3, 4],
>>>> ];
>>>>
>>>> foreach ($array as list($a)) {
>>>> // Note that there is no $b here.
>>>> echo "$a\n";
>>>> }
>>>> ?>
>>>>
>>>> The above example will output:
>>>>
>>>> 1
>>>> 3
>>>
>>> echo $a"\n"; [needs a dot.]
>>>
>>
>> Actually, in the case, richard is correct (for this line of code,
>> anyway). Simple variables within double quotes are evaluated.
>>
>
> However as typical for richard he mistyped his code compared to the sample.
>
> Sample: "$a\n"
> Richards: $a"\n"
>
> Scotty
Ah, you're right, Scotty. I was looking at the last part of his code,
figuring it was similar to the first part. With Richard, I should have
known better.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|