CakeFest 2024: The Official CakePHP Conference

openssl_free_key

(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)

openssl_free_keyキーリソースを開放する

警告

この関数は PHP 8.0.0 で 非推奨になります。この関数に頼らないことを強く推奨します。

説明

openssl_free_key(OpenSSLAsymmetricKey $key): void

openssl_free_key() は、指定した key が指すキーをメモリから開放します。

パラメータ

key

戻り値

値を返しません。

変更履歴

バージョン 説明
8.0.0 この関数は推奨されなくなりました。 なぜなら、実行してもなんの効果もないからです。
8.0.0 key は、 OpenSSLAsymmetricKey クラスのインスタンスを受け入れるようになりました。 これより前のバージョンでは、 OpenSSL key 型のリソースを受け入れていました。
add a note

User Contributed Notes 3 notes

up
5
Lawri van Bul
6 years ago
I just checked the code for PHP 7.1 and in there openssl_free_key is an alias for opnessl_pkey_free (PHP_FALIAS).

This supports Richards assumption.

I would also suggest to not use the alias,
but use the openssl_pkey_free function in new code.

This is because it is more descriptive about what its intend is and is the same structure as similar function in the openssl section.
up
-2
Richard Lynch
10 years ago
openssl_free_key and openssl_pkey_free are probably aliases.

And the preferred one is probably openssl_pkey_free.
up
-16
CIIDMike[at]Bweb1dev3
3 years ago
PHP 8.0 Deprecated: Function openssl_free_key() is deprecated
To Top