Update to https protocol for php.net links (#17168) [skip ci]

* Updated php.net link for some MemCache properties [skip ci]

* Changed protocol to https for links to php.net in comments

* Changed protocol to https for links to php.net in code

* Changed www.php.net (http) to secure.php.net (https) in comments

* Changed www.php.net (http) to secure.php.net (https) in code

* Changed protocol to https for links to php.net in UPGRADE.md

* Changed protocol to https for links to pecl.php.net in comments

* Changed us.php.net to secure.php.net (https) in comments

* Changed protocol to https for links to php.net in docs

* Changed www.php.net (http) to secure.php.net (https) in docs

* Changed protocol to https for links to pecl.php.net in docs

* Changed ru/jp.php.net to secure.php.net (https) in docs

Don't sure about russian guide: is this links meant to be for guide on russian, or not?
This commit is contained in:
Pavel Dovlatov
2019-02-28 13:09:27 +03:00
committed by Alexander Makarov
parent 8cc74f5c57
commit bdb7c64910
256 changed files with 672 additions and 672 deletions

View File

@ -471,7 +471,7 @@ abstract class Application extends Module
* If time zone is not configured in php.ini or application config,
* it will be set to UTC by default.
* @return string the time zone used by this application.
* @see http://php.net/manual/en/function.date-default-timezone-get.php
* @see https://secure.php.net/manual/en/function.date-default-timezone-get.php
*/
public function getTimeZone()
{
@ -481,9 +481,9 @@ abstract class Application extends Module
/**
* Sets the time zone used by this application.
* This is a simple wrapper of PHP function date_default_timezone_set().
* Refer to the [php manual](http://www.php.net/manual/en/timezones.php) for available timezones.
* Refer to the [php manual](https://secure.php.net/manual/en/timezones.php) for available timezones.
* @param string $value the time zone used by this application.
* @see http://php.net/manual/en/function.date-default-timezone-set.php
* @see https://secure.php.net/manual/en/function.date-default-timezone-set.php
*/
public function setTimeZone($value)
{