Jump to content

how would i turn this if statement in to a Ternary Operator ?


ricky spires

Recommended Posts

hello

 

i have another question.

 

how would i put php in to it?

 

 

say i have this

$headText = PageContent::find_text($headText);  		
foreach ($headText as $headTexts){
$header = $headTexts->title;	

echo $navPnt == 0 ? '<h3 class="menuheader expandable">'.$header.'</h3>' : '';
}

 

 

now, what would i do if i want to move this line inside it

$header = $headTexts->title;

 

this is what i tried but i get an error

 

$headText = PageContent::find_text($headText);  		
foreach ($headText as $headTexts){

echo $navPnt == 0 ? $header = $headTexts->title; '<h3 class="menuheader expandable">'.$header.'</h3>' : '';
}

Link to comment
Share on other sites

Ternary statements work like this:

( condition ) ? if true, do this : else do this;

 

$headText = PageContent::find_text($headText);  		
foreach ($headText as $headTexts){

echo $navPnt == 0 ? $header = $headTexts->title; '<h3 class="menuheader expandable">'.$header.'</h3>' : '';
}

 

Why not just do

echo ( $navPnt == 0 ) ? '<h3 class="menuheader expandable">'.$headTexts->title.'</h3> : '';

 

There's no reason to assign a variable there

 

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.