Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Talk:lib/weblib.php

From MoodleDocs
Revision as of 20:23, 14 July 2021 by David Mudrak (talk | contribs) (Text replacement - "</code>" to "</syntaxhighlight>")

is_https

I switch the is_https example to a better bit of sample code.

Code like

<code:php>

       if (is_https()) {
           $ssl = true;
       } else {
           $ssl = false;
       }

</syntaxhighlight>

should never be used. It is equivalent to <code:php>

       $ssl = is_https();

</syntaxhighlight>

However, in this case, the $ssl variable is used in exactly one place, so the code probably should not be using a local variable at all.--Tim Hunt (talk) 13:00, 6 October 2015 (AWST)