Jump to content

Recommended Posts

my state and country function don't seem to be referenced properly.

 

<span class="dark_grey"><?php echo ($company['country'] == 'United States') ? "{$company['city']}, {state($company['state'])}" : "{$company['city']}, {country($company['country'])}"; ?></span>

 

What is the proper syntax?

Link to comment
https://forums.phpfreaks.com/topic/240887-reference-function-inside/
Share on other sites

I don't believe you can use the ternary operator in this way.  Have you tried simply:

 

if($company['country'] == 'United States')
{
   echo "{$company['city']}, " . state($company['state']);
}
else
{
   echo "{$company['city']}, " . country($company['country']);
}

Although I think you're sacrificing readability for compactness, and creating an absolute nightmare for anyone who has to edit the code in the future (including yourself), you can't use a function call in a quoted string. You need to concatenate it.

 

<span class="dark_grey"><?php echo ($company['country'] == 'United States') ? "{$company['city']}, " . state($company['state']) : "{$company['city']},  " . country($company['country']); ?></span>

Where there's a will, there's a way (I don't recommend that you actually use this method as you will never be able to read and troubleshoot what your code is doing) -

 

<?php
$state = 'state'; // variable function name
$country = 'country'; // variable function name
?>
<span class="dark_grey"><?php echo ($company['country'] == 'United States') ? "{$company['city']}, {$state($company['state'])}" : "{$company['city']}, {$country($company['country'])}"; ?></span>

 

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.