Jump to content

[SOLVED] Simple Ternary Conditionals


Syphon

Recommended Posts

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.

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.

Archived

This topic is now archived and is closed to further replies.

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