Jump to content

[SOLVED] Simple Ternary Conditionals


Syphon

Recommended Posts

Is it possible for Ternary statements to handle conditions like the one below?

 

(is_numeric($_REQUEST["UserID"])) ? true : header('Location: users.php'); exit ;

 

Can exit be executed after the header call and still only be called within the false condition scope?

Link to comment
Share on other sites

Can't use the ternary like that. Why not use

if (!is_numeric($_REQUEST["UserID"]))  
{
        header('Location: users.php'); 
        exit ;
}

 

I figured as much. That's how I do handle redirects for the moment, but I was curious if Ternary could handle multiple lines of execution. Thanks for the help.

Link to comment
Share on other sites

NO ternary operates are not designed to execute blocks of code. Instead they are designed to do simple bits of processing. Such return a value to a variable. Execute a function based on a condition.

 

Ternary operates are inline conditions. I use ternary operators mainly on client defined variables, eg GET, POST and COOKIE/SESSION.

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.