Quantcast
Channel: php – PHP Web Developer
Viewing all articles
Browse latest Browse all 12

PHP Class Constants

$
0
0

class Person
{
    const NAME = "Milap";
    const SURNAME = "Patel";
}

echo Person::NAME;
echo "<br />";
echo Person::SURNAME;

Output :-


Milap
Patel


Filed under: php Tagged: php

Viewing all articles
Browse latest Browse all 12

Trending Articles