Jump to content

arrays


Ninjakreborn

Recommended Posts

I need to figure out the best way to master doing arrays, should I get use to the first way or the second way

<?php
$myarray = array("west", "david", "mike", "jim", "bob", "dave", "walton", "korn", "siesmic");
?>
or
the longer way
with writing out each one below it.
Which way is better while I am learning.
Link to comment
https://forums.phpfreaks.com/topic/7988-arrays/
Share on other sites

What you want to use?

The two ways have the same efect, but the first, is so clean and "fast".. so I use it.. the second way.. i use to random data, db reading, errors, ...

[code]# first
$var = array ( $a , $b , '1' , '2' );
# second, mode one
$var[] = $a;
$var[] = $b;
$var[] = '1';
$var[] = '2';
# second, mode two
while ( !feof ($file) )
{
    $var[] = fget ($file);
}[/code]
You may chose by your needed.. ;)

D.Soul
Link to comment
https://forums.phpfreaks.com/topic/7988-arrays/#findComment-29134
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.