Tag: variables
-
If you update an AutoPkg parent recipe, but your override is still using old settings…
AutoPkg has a cool feature called parent trust that allows you to create recipe overrides that store a hash of the parent recipe (instead of running the parent recipe directly), and then prevent you from running the recipe if there’s a change to the parent recipe, until you update the trust info. (I also have…
-
Referencing a PHP variable by using another variable as part of the name
This is kind of a niche scenario, but when you Google making a variable from another variable php, most of the examples involve using a double dollar sign, which may not be what you want to do. Yes, whenever possible, it makes sense to use arrays instead of weirdly-constructed variable names, but that may depend…