?: symbol php code example
Example: what does $ sign mean in php
<?php
$name = "World";
echo "Hello, $name";
# $ i.e. "sigil" is used to distinguish a string variable from rest of the string.
<?php
$name = "World";
echo "Hello, $name";
# $ i.e. "sigil" is used to distinguish a string variable from rest of the string.