![]() |
|
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. |
| |||||||
| 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. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 | ||
| 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 | |||
| Advertisements |
| | #2 | ||
| 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. | |||
| | #3 | ||
| 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. > | |||
| | #4 | ||
| 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. | |||
| | #5 | ||
| 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/ | |||
| | #6 | ||
| 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 > > > | |||
| | #7 | ||
| 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 | |||
| | #8 | ||
| 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..... | |||
| | #9 | ||
| 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 | |||
| | #10 | ||
| 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..... | |||
| Featured Websites | ||||
|
![]() |
| Tags: question, quotnewbiequot |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
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 | ||||
|