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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.