Change all other links available in HTTPS

This commit is contained in:
Maxim.Kolmakov 2018-10-16 12:12:15 +02:00
parent ca3d20b88b
commit e7ff3c65ba
13 changed files with 38 additions and 38 deletions

View File

@ -341,7 +341,7 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C
* Libxml 2 unescapes the URI, so if you want to pass e.g.
* b&c as the URI parameter a,
* you have to call
* simplexml_load_file(rawurlencode('http://example.com/?a=' .
* simplexml_load_file(rawurlencode('https://example.com/?a=' .
* urlencode('b&c'))). Since PHP 5.1.0 you don't need to do
* this because PHP will do it for you.
* </p>

View File

@ -532,7 +532,7 @@ class AMQPConnection
* 'write_timeout' => Timeout in for outcome activity. Note: 0 or greater seconds. May be fractional.
* 'connect_timeout' => Connection timeout. Note: 0 or greater seconds. May be fractional.
*
* Connection tuning options (see http://www.rabbitmq.com/amqp-0-9-1-reference.html#connection.tune for details):
* Connection tuning options (see https://www.rabbitmq.com/amqp-0-9-1-reference.html#connection.tune for details):
* 'channel_max' => Specifies highest channel number that the server permits. 0 means standard extension limit
* (see PHP_AMQP_MAX_CHANNELS constant)
* 'frame_max' => The largest frame size that the server proposes for the connection, including frame header

View File

@ -1,7 +1,7 @@
<?php
/**
* Couchbase extension stubs
* Gathered from http://docs.couchbase.com/sdk-api/couchbase-php-client-2.3.0/index.html
* Gathered from https://docs.couchbase.com/sdk-api/couchbase-php-client-2.3.0/index.html
* Maintainer: sergey@couchbase.com
*
* https://github.com/couchbase/php-couchbase/tree/master/api

View File

@ -2,7 +2,7 @@
/**
* Couchbase extension stubs
* Gathered from http://docs.couchbase.com/sdk-api/couchbase-php-client-2.3.0/index.html
* Gathered from https://docs.couchbase.com/sdk-api/couchbase-php-client-2.3.0/index.html
* Maintainer: sergey@couchbase.com
*
* https://github.com/couchbase/php-couchbase/tree/master/api

View File

@ -2236,7 +2236,7 @@ function curl_share_setopt ($sh, $option, $value ) {}
* Return string describing the given error code
* @link https://secure.php.net/manual/en/function.curl-strerror.php
* @param int $errornum <p>
* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html &nbsp;cURL error codes} constants.
* One of the {@link https://curl.haxx.se/libcurl/c/libcurl-errors.html &nbsp;cURL error codes} constants.
* </p>
* @return string|NULL Returns error description or <b>NULL</b> for invalid error code.
* @since 5.5.0
@ -2460,7 +2460,7 @@ function curl_multi_setopt ($mh, $option, $value) {}
* Return string describing error code
* @link https://secure.php.net/manual/en/function.curl-multi-strerror.php
* @param int $errornum <p>
* One of the {@link http://curl.haxx.se/libcurl/c/libcurl-errors.html CURLM error codes} constants.
* One of the {@link https://curl.haxx.se/libcurl/c/libcurl-errors.html CURLM error codes} constants.
* </p>
* @return string|NULL Returns error string for valid error code, NULL otherwise.
* @since 5.5.0

View File

@ -944,7 +944,7 @@ function date_create_immutable_from_format ($format, $time, DateTimeZone $timezo
* Alias:
* {@see DateTime::createFromFormat}
* @link https://php.net/manual/en/function.date-create-from-format.php
* @param string $format Format accepted by <a href="http://us.php.net/manual/en/function.date.php">date()</a>.
* @param string $format Format accepted by <a href="https://secure.php.net/manual/en/function.date.php">date()</a>.
* <p>If format does not contain the character ! then portions of the generated time which are not specified in format will be set to the current system time.
* <p>If format contains the character !, then portions of the generated time not provided in format, as well as values to the left-hand side of the !, will be set to corresponding values from the Unix epoch.
* <p>The Unix epoch is 1970-01-01 00:00:00 UTC.

View File

@ -1170,7 +1170,7 @@ final class EventBufferEvent
* Represents configuration structure which could be used in construction of the EventBase .
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/).
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
*
* @see https://secure.php.net/manual/en/class.eventconfig.php
*/
@ -1239,7 +1239,7 @@ final class EventConfig
* Represents Libevent's DNS base structure. Used to resolve DNS asyncronously, parse configuration files like resolv.conf etc.
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/).
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
*
* @see https://secure.php.net/manual/en/class.eventdnsbase.php
*/
@ -1377,7 +1377,7 @@ final class EventDnsBase
* Represents HTTP server.
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/).
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
*
* @see https://secure.php.net/manual/en/class.eventhttp.php
*/
@ -1533,7 +1533,7 @@ final class EventHttp
* Represents an HTTP connection.
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/).
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
*
* @see https://secure.php.net/manual/en/class.eventhttpconnection.php
*/
@ -1795,7 +1795,7 @@ class EventHttpRequest
* @property int $fd
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/).
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
*
* @see https://secure.php.net/manual/en/class.eventlistener.php
*/
@ -1910,7 +1910,7 @@ final class EventListener
* @property string $local_pk
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/).
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
*
* @see https://secure.php.net/manual/en/class.eventsslcontext.php
*/
@ -1957,7 +1957,7 @@ final class EventSslContext
* EventUtil is a singleton with supplimentary methods and constants.
*
* @author Kazuaki MABUCHI
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](http://creativecommons.org/licenses/by/3.0/).
* @copyright Copyright (https://secure.php.net/manual/cc.license.php) by the PHP Documentation Group is licensed under [CC by 3.0 or later](https://creativecommons.org/licenses/by/3.0/).
*
* @see https://secure.php.net/manual/en/class.eventutil.php
*/

View File

@ -6,7 +6,7 @@
*/
/**
* Grpc
* @see http://grpc.io
* @see https://grpc.io
* @see https://github.com/grpc/grpc/tree/master/src/php/ext/grpc
*/
namespace Grpc

View File

@ -4578,7 +4578,7 @@ class Imagick implements Iterator, Countable {
public static function getQuantum () { }
/**
* Replaces any embedded formatting characters with the appropriate image property and returns the interpreted text. See http://www.imagemagick.org/script/escape.php for escape sequences.
* Replaces any embedded formatting characters with the appropriate image property and returns the interpreted text. See https://www.imagemagick.org/script/escape.php for escape sequences.
* @link https://php.net/manual/en/imagick.identifyformat.php
* @see https://www.imagemagick.org/script/escape.php
* @param string $embedText A string containing formatting sequences e.g. "Trim box: %@ number of unique colors: %k".
@ -4739,7 +4739,7 @@ class Imagick implements Iterator, Countable {
public function setImageChannelMask ($channel) {}
/**
* Merge multiple images of the same size together with the selected operator. http://www.imagemagick.org/Usage/layers/#evaluate-sequence
* Merge multiple images of the same size together with the selected operator. https://www.imagemagick.org/Usage/layers/#evaluate-sequence
* @param int $EVALUATE_CONSTANT
* @return bool
* @see https://www.imagemagick.org/Usage/layers/#evaluate-sequence
@ -6693,7 +6693,7 @@ class ImagickKernel {
public function addUnityKernel() { }
/**
* Create a kernel from a builtin in kernel. See http://www.imagemagick.org/Usage/morphology/#kernel for examples.<br>
* Create a kernel from a builtin in kernel. See https://www.imagemagick.org/Usage/morphology/#kernel for examples.<br>
* Currently the 'rotation' symbols are not supported. Example: $diamondKernel = ImagickKernel::fromBuiltIn(\Imagick::KERNEL_DIAMOND, "2");
* @link https://php.net/manual/en/imagickkernel.frombuiltin.php
* @param string $kernelType The type of kernel to build e.g. \Imagick::KERNEL_DIAMOND
@ -6704,7 +6704,7 @@ class ImagickKernel {
public static function fromBuiltin($kernelType, $kernelString) { }
/**
* Create a kernel from a builtin in kernel. See http://www.imagemagick.org/Usage/morphology/#kernel for examples.<br>
* Create a kernel from a builtin in kernel. See https://www.imagemagick.org/Usage/morphology/#kernel for examples.<br>
* Currently the 'rotation' symbols are not supported. Example: $diamondKernel = ImagickKernel::fromBuiltIn(\Imagick::KERNEL_DIAMOND, "2");
* @link https://php.net/manual/en/imagickkernel.frombuiltin.php
* @see https://www.imagemagick.org/Usage/morphology/#kernel
@ -6725,7 +6725,7 @@ class ImagickKernel {
/**
* ScaleKernelInfo() scales the given kernel list by the given amount, with or without normalization of the sum of the kernel values (as per given flags).<br>
* The exact behaviour of this function depends on the normalization type being used please see http://www.imagemagick.org/api/morphology.php#ScaleKernelInfo for details.<br>
* The exact behaviour of this function depends on the normalization type being used please see https://www.imagemagick.org/api/morphology.php#ScaleKernelInfo for details.<br>
* Flag should be one of Imagick::NORMALIZE_KERNEL_VALUE, Imagick::NORMALIZE_KERNEL_CORRELATE, Imagick::NORMALIZE_KERNEL_PERCENT or not set.
* @link https://php.net/manual/en/imagickkernel.scale.php
* @see https://www.imagemagick.org/api/morphology.php#ScaleKernelInfo

View File

@ -5,7 +5,7 @@
* Parsed from documentation
* Generated at 2017-08-24 16:06:54
*
* @see http://mapserver.org/mapscript/php/phpmapscript.html
* @see https://mapserver.org/mapscript/php/phpmapscript.html
* @see https://raw.githubusercontent.com/mapserver/docs/branch-7-0/en/mapscript/php/phpmapscript.txt
*/

View File

@ -871,7 +871,7 @@ class MongoCollection {
* (PECL mongo &gt;= 1.3.0)<br/>
* <p>
* The MongoDB
* {@link http://docs.mongodb.org/manual/applications/aggregation/ aggregation framework}
* {@link https://docs.mongodb.org/manual/applications/aggregation/ aggregation framework}
* provides a means to calculate aggregated values without having to use
* MapReduce. While MapReduce is powerful, it is often more difficult than
* necessary for many simple aggregation tasks, such as totaling or averaging
@ -1346,7 +1346,7 @@ class MongoCursor implements Iterator {
* Which flag to set. You can not set flag 6 (EXHAUST) as the driver does
* not know how to handle them. You will get a warning if you try to use
* this flag. For available flags, please refer to the wire protocol
* {@link http://www.mongodb.org/display/DOCS/Mongo+Wire+Protocol#MongoWireProtocol-OPQUERY documentation}.
* {@link https://www.mongodb.org/display/DOCS/Mongo+Wire+Protocol#MongoWireProtocol-OPQUERY documentation}.
* </p>
* @param bool $set [optional] <p>Whether the flag should be set (<b>TRUE</b>) or unset (<b>FALSE</b>).</p>
* @return MongoCursor

View File

@ -346,7 +346,7 @@ function wordwrap ($str, $width = 75, $break = "\n", $cut = false) {}
* <td>
* Silently discard invalid code unit sequences instead of returning
* an empty string. Using this flag is discouraged as it
* {@link http://unicode.org/reports/tr36/#Deletion_of_Noncharacters »&nbsp;may have security implications}.
* {@link https://unicode.org/reports/tr36/#Deletion_of_Noncharacters »&nbsp;may have security implications}.
* </td>
* </tr>
*

View File

@ -5,7 +5,7 @@
* The keys of this array are the names of the global variables.
* $GLOBALS has existed since PHP 3.
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">http://us2.php.net/manual/en/reserved.variables.php</a>
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$GLOBALS = array();
@ -15,7 +15,7 @@ $GLOBALS = array();
* (which is still available, but deprecated).
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_COOKIE = array();
@ -27,7 +27,7 @@ $_COOKIE = array();
* Analogous to the old $HTTP_ENV_VARS array (which is still available, but deprecated).
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_ENV = array();
/**
@ -44,7 +44,7 @@ $HTTP_ENV_VARS = array();
* See POST method uploads for more information.
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_FILES = array();
/**
@ -61,7 +61,7 @@ $HTTP_POST_FILES = array();
* Analogous to the old $HTTP_GET_VARS array (which is still available, but deprecated).
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_GET = array();
/**
@ -78,7 +78,7 @@ $HTTP_GET_VARS = array();
* @link https://secure.php.net/manual/en/language.variables.predefined.php
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_POST = array();
/**
@ -102,7 +102,7 @@ $HTTP_POST_VARS = array();
*
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_REQUEST = array();
@ -114,7 +114,7 @@ $_REQUEST = array();
* Analogous to the old $HTTP_SERVER_VARS array (which is still available, but deprecated).
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_SERVER = array();
/**
@ -169,7 +169,7 @@ $_SERVER['ORIG_PATH_INFO'] = '';
* See the Session handling functions section for more information.
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$_SESSION = array();
/**
@ -183,7 +183,7 @@ $HTTP_SESSION_VARS = array();
* The number of arguments passed to script
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$argc = 0;
@ -193,7 +193,7 @@ $argc = 0;
* Array of arguments passed to script
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$argv = array();
@ -203,7 +203,7 @@ $argv = array();
* Raw POST data
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*
* @deprecated 5.6.0 Deprecated as of PHP 5.6.0. Use the php://input stream instead.
*/
@ -215,7 +215,7 @@ $HTTP_RAW_POST_DATA = '';
* HTTP response headers
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$http_response_header = array();
@ -224,6 +224,6 @@ $http_response_header = array();
* The previous error message
*
* <p><a href="https://secure.php.net/manual/en/reserved.variables.php">
* http://us2.php.net/manual/en/reserved.variables.php</a>
* https://secure.php.net/manual/en/reserved.variables.php</a>
*/
$php_errormsg = '';