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 values in class with PHP

4 Answers

0 votes
class cl
{
    const CONSTANT = 'constant value';

    function showConstant() 
    {
        echo  self::CONSTANT . "<br />";
    }
}

echo cl::CONSTANT . "<br />";


/*
run: 

constant value

*/

 



answered Jun 4, 2016 by avibootz
0 votes
class cl
{
    const CONSTANT = 'constant value';

    function showConstant() 
    {
        echo  self::CONSTANT . "<br />";
    }
}

$classname = "cl";
echo $classname::CONSTANT . "<br />"; 


/*
run: 

constant value

*/

 



answered Jun 4, 2016 by avibootz
0 votes
class cl
{
    const CONSTANT = 'constant value';

    function showConstant() 
    {
        echo  self::CONSTANT . "<br />";
    }
}

$class = new cl();
$class->showConstant()


/*
run: 

constant value

*/

 



answered Jun 4, 2016 by avibootz
0 votes
class cl
{
    const CONSTANT = 'constant value';

    function showConstant() 
    {
        echo  self::CONSTANT . "<br />";
    }
}

$class = new cl();
echo $class::CONSTANT . "<br />";


/*
run: 

constant value

*/

 



answered Jun 4, 2016 by avibootz

Related questions

4 answers 413 views
413 views asked May 23, 2018 by avibootz
1 answer 158 views
2 answers 184 views
184 views asked Oct 13, 2016 by avibootz
4 answers 327 views
327 views asked Nov 2, 2015 by avibootz
1 answer 172 views
172 views asked May 30, 2016 by avibootz
1 answer 223 views
1 answer 204 views
...