Is it possible to delay variable implement(?)/recognize(?) in PHP?
- by Relax
For example,
A.php:
<?php
$a = array('name'=>'wine[$index][name]',
'value'=>'wine[$index][value]'
)
?>
B.php:
include_once(a.php)
...
$index = 0;
$b = $a;
I know this example won't work, just for explaination, i wanna if it is possible (if possible, how?) to delay variable $index to take value when $b = $a ?