= 4.2.0, PHP 5, PHP 7, PHP 8)openssl_csr_export — 將CSR作為字符串導(dǎo)出說明openssl_csr_export(mixed $csr, string &$out, bool $notext = t">
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
openssl_csr_export — 將CSR作為字符串導(dǎo)出
openssl_csr_export() 獲取證書簽名請求(csr
)并通過引用保存其 PEM 格式的字符串(out
)。
csr
See CSR parameters for a list of valid values.
out
在成功時,該字符串將包含PEM編碼的CSR.
notext
可選參數(shù) notext
影響輸出的冗余度。如果設(shè)為
false
,輸出內(nèi)容將包含附加的人類可讀信息。notext
的缺省值為 true
。
成功時返回 true
, 或者在失敗時返回 false
。
示例 #1 openssl_csr_export() 范例
<?php
$subject = array(
"commonName" => "example.com",
);
$private_key = openssl_pkey_new(array(
"private_key_bits" => 2048,
"private_key_type" => OPENSSL_KEYTYPE_RSA,
));
$configargs = array(
'digest_alg' => 'sha256WithRSAEncryption'
);
$csr = openssl_csr_new($subject, $private_key, $configargs);
openssl_csr_export($csr, $csr_string);
echo $csr_string;
?>