php-Dynamic Variables

Sometimes it is useful to set and use variables dynamically. 
Normally, you assign a variable like this: 

$var = "hello";
 
Now let's say you want a variable whose name is the 
value of the $var variable. You can do that like this:

$$var = "World";
 
PHP parses $$var by first dereferencing the innermost 
variable, meaning that $var becomes "hello". The 
expression that's left is $"hello", which is just $hello.
 In other words, we have just created a new variable 
named hello and assigned it the value "World"
You can nest dynamic variables to an infinite level in 
 PHP, although once you get beyond two levels, it 
can be very confusing for someone who is trying to read your code.
There is a special syntax for using dynamic variables, and 
any other complex variable, inside quoted strings in PHP: 

echo "Hello ${$var}";
 
This syntax also helps resolve an ambiguity that occurs when
 variable arrays are used. Something like $$var[1] is 
ambiguous because it is impossible for PHP to know which
 level to apply the array index to. ${$var[1]} tells 
PHP to dereference the inner level first and apply the 
 array index to the result before dereferencing the outer level.
 ${$var}[1], on the other hand, tells PHP to apply the index
 to the outer level.
Initially, dynamic variables may not seem that useful, but there
 are times when they can shorten the amount of code you need 
to write to perform certain tasks. For example, say you have 
an associative array that looks like: 

$array["abc"] = "Hello";
$array["def"] = "World";
 
Associative arrays like this are returned by various functions
 in the PHP modules. mysql_fetch_array() is one example.
 The indices in the array usually refer to fields or entity names 
within the context of the module you are working with. It's
 handy to turn these entity names into real PHP variables, 
so you can refer to them as simply $abc and $def

Related Posts:
  • Magic Methods-Php Php Mail Php Array Php If else Php Variable This is a link Php Substrings Php Sessions Magic Methods and Constants Magicmethods are specially named methods that can be defi nedin any class and … Read More
  • Php session Info and cookies #menu111 { BORDER-RIGHT: #cccccc 1px dashed; PADDING-RIGHT: 20px; BORDER-TOP: #cccccc 1px dashed; PADDING-LEFT: 20px; BACKGROUND: #dddddd; LEFT: 20px; PADDING-BOTTOM: 20px; MARGIN: 0px; BORDER-LEFT: #cccccc 1px dashed; WI… Read More
  • The $_REQUEST Variable-php PHP is a lot more than a way to work with text. You’ve been working with strings non-stop, but there are a lot more types of information you’ll need to work with in your PHP scripts. As you might expect, there are all kinds … Read More
  • Php tutorial - imagemagick Php tutorial - imagemagick Php tutorial - imagemagick - create, edit and compose bitmap  imagemagick is free software  to create, edit, and compose bitmap images in many formats from the commandline or via progra… Read More
  • Send Email from a PHP Script you use the mail() function (in combination with a web form in particular), make sure you check it is called from the desired page and protect the form with a CAPTCHA mail(to,subject,message,headers,parameters); <?php… Read More
  • difference between print and echo - php print( ) is a function, echo is a language construct.  This means that print( ) returns a value, while echo doesn't. You can include print( ) but not echo in larger expressions. echo is  run very fast than  … Read More
  • Get mail info with IMAP or POP3 To read mail using IMAP or POP3, which allows you to create a web-based email client. Use PHP's IMAP extension, which speaks both IMAP and POP3: // open IMAP connection $mail = imap_open('{mail.server.com:143}', &nb… Read More
  • Displaying Browser Specific-php However, having seen some of the possible values of HTTP_USER_AGENT in the last chapter, you can imagine that there are hundreds of slightly different values. So it's time to learn some basic pattern matching.You'l… Read More
  • PHP identical operator === Variable types are also important in comparison.When you compare two variableswith the identical operator (===), like this, the active types for the zvals are compared,and if they are different, the comparison fails outright… Read More
  • Third-party Cookies Third-party Cookies Third-party cookies come from other domain sources that have items, such as ads or images,  embedded on the page adjust cookie and site data permissions. Manage your cookies and site data - chrome … Read More
  • socket tcp server with php Php Web Application Php Email Codes Php Array Php Ifelse Php variables Php Substrings Php Mysql Functions php-sessions HTTP is the standard that allows documents to be communicated and shared over &nb… Read More
  • Creating a Simple Php Functions #menu111 { BORDER-RIGHT: #cccccc 1px dashed; PADDING-RIGHT: 20px; BORDER-TOP: #cccccc 1px dashed; PADDING-LEFT: 20px; BACKGROUND: #dddddd; LEFT: 20px; PADDING-BOTTOM: 20px; MARGIN: 0px; BORDER-LEFT: #cccccc 1px dashed; WID… Read More
  • Php HTTP Basics Php Web Application Php Email Codes Php Array Php Ifelse Php variables Php Substrings Php Mysql Functions php-sessions Php HTTP Basics When a web browser requests a web page, it sends an HTTP request… Read More
  • php -Mail Functions The mail() function requires an installed and working email subsystem for sending mail. The program to be used is defined by configuration directives in the php.ini file. A common pitfall is that these are not set up cor… Read More
  • Adding CSS style in php script <?php       echo '<span style="font-size:10px">';    // add  styles as  style attribute       echo 'test';     &nbs… Read More