Hi.
If this function not work with pathname try with a file_get_contents of a key file.
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
openssl_pkey_get_private — 获取私钥
openssl_get_privatekey() 解析
key
供其他函数使用。
key
key
可以是如下密钥之一:
passphrase
如果指定的密钥已被加密了(受密码保护),可选参数 passphrase
是必须要的。
成功,返回真实的密钥资源标识符,失败,返回 false
.
Hi.
If this function not work with pathname try with a file_get_contents of a key file.
It's actually "file://key.pem" when you want to give a relative path using unix systems. It will be three '/' in case of absolute path (e.g "file:///home/username/..."). But this path consists of two '/' originated from "file://" and one '/' from the fact that home is a subfolder of the unix filesystem's root directory ("/home/username/..."). This two part will be concatenated and you will get three '/' characters following each other.
So you only have to concatenate "file://" with an existing path string in every case.