Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,820 answers

573 users

How to define constant in a function in PHP

2 Answers

0 votes
define('CONST_A', 'a');

function func() 
{
    define('CONST_B', 'b');
}

func();
echo CONST_A . " " . CONST_B;
 
/*
run:

a b

*/

 



answered Oct 13, 2016 by avibootz
0 votes
define('CONST_A', 15);

function func() 
{
    define('CONST_B', 89);
}

func();
echo CONST_A . " " . CONST_B;
 
/*
run:

15 89

*/

 



answered Oct 13, 2016 by avibootz

Related questions

4 answers 413 views
413 views asked May 23, 2018 by avibootz
1 answer 158 views
4 answers 234 views
4 answers 327 views
327 views asked Nov 2, 2015 by avibootz
1 answer 166 views
2 answers 159 views
...