define('', 'http://' . Config::get('url.help'));
Where is it pulling url.help from?
Is this a class or a controller?
What is “Config::get”
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is a public static method (
get()) on a class (Config) and the::is called Paamayim Nekudotayim or the Scope Resolution Operator.url.helpwill most likely beexplode()d on the.dots and used to return a value from an array like the following:The values in
$configare most likely taken from a plain text configuration file such as XML, YAML or PHP INI style configuration.