Created
July 25, 2017 17:18
-
-
Save khanof89/1c47573b5aacffa182ebd64e7ed5aba9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$camp_milestone_3 = 'three'; | |
$camp_milestone_4 = 'four'; | |
$three = 3; | |
$four = 4; | |
$third = $camp_milestone_.$three; | |
$fourth = $camp_milestone_.$four; | |
$third = $camp_milestone_{$three}; | |
$fourth = $camp_milestone_{$four}; | |
echo $third; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment