Sunday, 17 April 2016

php - What are the backticks `` called?




What are the backtick operators (``) called in the context of evaluating their content?


Answer



If you're referring to bash then the backticks are known as "command substitution". $() provides similar functionality.


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...