/    Sign up×
Community /Pin to ProfileBookmark

Simplify multiple defines?

If i have lots of constant declarations,

define (‘ACTDC5′,’33.88’);
define (‘ACTDC6′,’41.95’);

Can they be simplified in any way? For example…

define (‘ACTDC5′,’33.88’,
‘ACTDC6′,’41.95’);

to post a comment
PHP

3 Comments(s)

Copy linkTweet thisAlerts:
@NogDogMar 10.2005 — I don't think so. However, unless there is some pressing need to use constants instead of variables, it sounds like a good place for an associative array:
[code=php]
$price = array('ACTDC5' => '33.88',
'ACTDC6' => '41.95',
'ACTDC7' => '45.95');
foreach($price as $key => $value)
{
echo "<p>Price of $key is $$value.</p>n";
# or
echo "<p>Price of $key is ${$price[$key]}.</p>n";
}

[/code]
Copy linkTweet thisAlerts:
@SuzanneBauthorMar 11.2005 — That's like buying cake when all you needed was bread.

I feel sorry for the poor neglected constants.

:-)
Copy linkTweet thisAlerts:
@SuzanneBauthorMar 11.2005 — 
  • * blank *
  • ×

    Success!

    Help @SuzanneB spread the word by sharing this article on Twitter...

    Tweet This
    Sign in
    Forgot password?
    Sign in with TwitchSign in with GithubCreate Account
    about: ({
    version: 0.1.9 BETA 5.5,
    whats_new: community page,
    up_next: more Davinci•003 tasks,
    coming_soon: events calendar,
    social: @webDeveloperHQ
    });

    legal: ({
    terms: of use,
    privacy: policy
    });
    changelog: (
    version: 0.1.9,
    notes: added community page

    version: 0.1.8,
    notes: added Davinci•003

    version: 0.1.7,
    notes: upvote answers to bounties

    version: 0.1.6,
    notes: article editor refresh
    )...
    recent_tips: (
    tipper: @Yussuf4331,
    tipped: article
    amount: 1000 SATS,

    tipper: @darkwebsites540,
    tipped: article
    amount: 10 SATS,

    tipper: @Samric24,
    tipped: article
    amount: 1000 SATS,
    )...