Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > PHP
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

PHP PHP for some can be one of the hardest website programming codes, so do you need help on your PHP script, if it is php4, php5 or lower this is the place for you for any PHP help.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 4:17 PM   #1
Wm
 
Wm's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

I've seen a number of code samples using something like:

a => get(this)

....and I can't find anything that explains what that symbology means. I
assume that is has something to do with an array, but I'm still struggling
to really get a good handle on arrays. Can anyone help me grasp what that is
and what it's used for?

Still learning,
Wm



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-01-2007, 4:17 PM   #2
Justin Koivisto
 
Justin Koivisto's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

Wm wrote:

> I've seen a number of code samples using something like:
>
> a => get(this)
>
> ...and I can't find anything that explains what that symbology means. I
> assume that is has something to do with an array, but I'm still struggling
> to really get a good handle on arrays. Can anyone help me grasp what that is
> and what it's used for?


http://us2.php.net/manual/en/language.types.array.php

Another one you may see is ->

http://us2.php.net/manual/en/language.oop.php

--
Justin Koivisto - spam@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 4:17 PM   #3
Wm
 
Wm's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

OK, I kinda understand now -- it's pretty much like an assignment operator
(which is the section of the manual I was searching). Generally speaking,
array[a] = value is the same thing as array(a => value), right?

Wm


"Justin Koivisto" <spam@koivi.com> wrote in message
news:hFeYa.885$m3.45488@news7.onvoy.net...
> Wm wrote:
>
> > I've seen a number of code samples using something like:
> >
> > a => get(this)
> >
> > ...and I can't find anything that explains what that symbology means. I
> > assume that is has something to do with an array, but I'm still

struggling
> > to really get a good handle on arrays. Can anyone help me grasp what

that is
> > and what it's used for?

>
> http://us2.php.net/manual/en/language.types.array.php
>
> Another one you may see is ->
>
> http://us2.php.net/manual/en/language.oop.php
>
> --
> Justin Koivisto - spam@koivi.com
> PHP POSTERS: Please use comp.lang.php for PHP related questions,
> alt.php* groups are not recommended.
>



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 4:18 PM   #4
Justin Koivisto
 
Justin Koivisto's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

Wm wrote:
> OK, I kinda understand now -- it's pretty much like an assignment operator
> (which is the section of the manual I was searching). Generally speaking,
> array[a] = value is the same thing as array(a => value), right?


ya, that's right, but it would look more like:

$ararray['a'] = 5;
or
$ar=array('a'=>5);

--
Justin Koivisto - spam@koivi.com
PHP POSTERS: Please use comp.lang.php for PHP related questions,
alt.php* groups are not recommended.

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 4:18 PM   #5
Jeffrey Silverman
 
Jeffrey Silverman's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

On Wed, 06 Aug 2003 22:15:27 +0000, Wm wrote:

> OK, I kinda understand now -- it's pretty much like an assignment operator
> (which is the section of the manual I was searching). Generally speaking,
> array[a] = value is the same thing as array(a => value), right?
>


<snip!>

Think of it as the "assignment arrow operator". There is also the "arrow"
operator, which gets stuff out of class instances:

$obj->methodName();

The "assignment arrow" can also be used in the following idiom, used to
iterate through an associative array:

foreach ($assoc_array as $key => $value){
print "KEY is $key , VALUE is $value<br>\n";
}

--
Jeffrey D. Silverman | jeffrey AT jhu DOT edu
Johns Hopkins University | Baltimore, MD
Website | http://www.wse.jhu.edu/newtnotes/

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 5:07 PM   #6
erichmj
 
erichmj's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

1 => 1

equal/greater than

+e
http://nodist.com/

Wm wrote:

> I've seen a number of code samples using something like:
>
> a => get(this)
>
> ...and I can't find anything that explains what that symbology means. I
> assume that is has something to do with an array, but I'm still struggling
> to really get a good handle on arrays. Can anyone help me grasp what that is
> and what it's used for?
>
> Still learning,
> Wm
>
>
>


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 5:07 PM   #7
Jonni
 
Jonni's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

Nope!
Read more :
http://dk2.php.net/manual/en/function.array.php

In short it use to define values in arrays.
:-)
Jonni


erichmj wrote:
> 1 => 1
>
> equal/greater than
>
> +e
> http://nodist.com/
>
> Wm wrote:
>
>> I've seen a number of code samples using something like:
>>
>> a => get(this)
>>
>> ...and I can't find anything that explains what that symbology
>> means. I assume that is has something to do with an array, but I'm
>> still struggling to really get a good handle on arrays. Can anyone
>> help me grasp what that is and what it's used for?
>>
>> Still learning,
>> Wm



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 5:07 PM   #8
Phil Roberts
 
Phil Roberts's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

With total disregard for any kind of safety measures "Jonni"
<jobier@hotmail.com> leapt forth and uttered:


> Nope!
> Read more :
> http://dk2.php.net/manual/en/function.array.php
>
> In short it use to define values in arrays.
>:-)
> Jonni
>
>


Actually, it's both...

--
There is no signature.....
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 5:07 PM   #9
Jonni
 
Jonni's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

Phil Roberts wrote:
> With total disregard for any kind of safety measures "Jonni"
> <jobier@hotmail.com> leapt forth and uttered:
>
>
>> Nope!
>> Read more :
>> http://dk2.php.net/manual/en/function.array.php
>>
>> In short it use to define values in arrays.
>> :-)
>> Jonni
>>
>>

>
> Actually, it's both...


True?
I thought you only did >= & <=
and never
=< & =>

Looking at Comparison Operators,
the second set are not mentioned,
but if that works too :-)

Jonni


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 5:07 PM   #10
Phil Roberts
 
Phil Roberts's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default "newbie" question: what is =>

With total disregard for any kind of safety measures "Jonni"
<jobier@hotmail.com> leapt forth and uttered:

> Phil Roberts wrote:
>> With total disregard for any kind of safety measures "Jonni"
>> <jobier@hotmail.com> leapt forth and uttered:
>>
>>
>>> Nope!
>>> Read more :
>>> http://dk2.php.net/manual/en/function.array.php
>>>
>>> In short it use to define values in arrays.
>>> :-)
>>> Jonni
>>>
>>>

>>
>> Actually, it's both...

>
> True?
> I thought you only did >= & <=
> and never
> =< & =>
>
> Looking at Comparison Operators,
> the second set are not mentioned,
> but if that works too :-)
>
> Jonni
>
>
>


Of course I could be wrong.

Watching people talk about their A level results is making me feel
like a total mong today.

--
There is no signature.....
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
font color="gold" (or whatever) where's the proper html for this ("#ffffa0") type of thing? Big Bill HTML 4 07-01-2007 2:06 PM
Play "FREE" Casino Games and WIN "Real Cash" at GOCG! Affiliate Manager Affiliate Programs 0 06-12-2007 7:58 PM
"""*" FREE internet moneymaker """*" Dave Building An Internet Business 0 06-11-2007 12:18 AM
For Sony, that performance "is simply abysmal" - "PS3 is sucking wind right now" Doug Jacobs Console Subjects 0 05-29-2007 4:24 PM
some shortcut keys not working anymore-----help"""""""" Kadaitcha Man Windows 1 05-28-2007 11:28 PM


Featured Websites




All times are GMT +1. The time now is 12:37 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98