Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
in_array - what is this sample code doing
Old 05-11-2008, 01:33 AM in_array - what is this sample code doing
Novice Talker

Posts: 12
Trades: 0
At the end of the in_array statement below what is this- ? $orderdir: "ASC"
Is this the default behavior if $orderdir evaluates to false

Code:
(in_array($orderdir, array("ASC", "DESC")) ? $orderdir : "ASC");
feelice is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 05-11-2008, 03:30 AM Re: in_array - what is this sample code doing
addonchat's Avatar
Super Talker

Posts: 115
Name: Chris Duerr
Trades: 0
That is the ternary operator, it is somewhat equivalent to an if-then-else statement.

Basically that code is saying that if $orderdir is contained within the array("ASC", "DESC") then return $orderdir; otherwise default to return the value "ASC". The result is a string. To give you an idea as to it's logic, it's roughly equivalent to:
PHP Code:
{
   if(
in_array($orderdir, array("ASC""DESC")) 
      return 
$orderdir;
   else
      return 
"ASC";

References:
http://us3.php.net/manual/en/languag...arison.ternary
http://us2.php.net/in_array
__________________
Chris Duerr
AddonChat Java Chat Software

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE
addonchat is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to in_array - what is this sample code doing
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

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





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.23577 seconds with 12 queries