Created
February 17, 2017 14:52
-
-
Save dsturm/2593244cd889618ef304ea7e674344b3 to your computer and use it in GitHub Desktop.
Fix vc
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
$param_value = isset( $$param['param_name'] ) ? $$param['param_name'] : ''; | |
$param_value = isset(${$param['param_name']}) ? ${$param['param_name']} : ''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment