Skip to content

Instantly share code, notes, and snippets.

@khanof89
Created July 25, 2017 17:18
Show Gist options
  • Save khanof89/1c47573b5aacffa182ebd64e7ed5aba9 to your computer and use it in GitHub Desktop.
Save khanof89/1c47573b5aacffa182ebd64e7ed5aba9 to your computer and use it in GitHub Desktop.
<?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