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 08:43, 15 July 2021 by David Mudrak (talk | contribs) (syntaxhighlight fix)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

is_https

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

Code like

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

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)