Answers for "what does $ sign mean in php"

PHP
1

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.
Posted by: Guest on September-25-2020

Browse Popular Code Answers by Language