DEV Community

Ahtsham Ajus
Ahtsham Ajus

Posted on

Today I learned about constant variables

<?php
$a = 100
$b = 550

echo "$a + $b";
?>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)