What is the difference between $message and $$message?
Answers were Sorted based on User's Feedback
Answer / sachin g kulkarni
$message is normal variable , where as $$message is
variable variable...That means you can access the value of
one variable with the name of the other variable......Hey
don't confuse this is not pointer of C. Pointer concept is
totally different from this
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / shekar
$message is normal variable , where as $$message is
variable variable
| Is This Answer Correct ? | 18 Yes | 3 No |
How to remove duplicate values from array using php?
Which functions are used to remove whitespaces from the string?
What is parent __construct ();?
What is the difference between explode and split?
List functions available to sort an php array?
How can i send a HTML file to mail account.
How do you pass a variable by value?
Write a regular expression to get the value xxx from the string 'xxx@yyy.com'
How do you achieve page caching in PHP?
Which is true about the singleton design pattern?
What is strlen php?
I am writing an application in php that outputs a printable version of driving directions. It contains some long sentences, and I am a neat freak, and would like to make sure that no line exceeds 50 characters. How do I accomplish that with php?