= 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">

openssl_csr_export

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

openssl_csr_export將CSR作為字符串導(dǎo)出

說明

openssl_csr_export(mixed $csr, string &$out, bool $notext = true): bool

openssl_csr_export() 獲取證書簽名請(qǐng)求(csr)并通過引用保存其 PEM 格式的字符串(out)。

參數(shù)

csr

See CSR parameters for a list of valid values.

out

在成功時(shí),該字符串將包含PEM編碼的CSR.

notext

可選參數(shù) notext 影響輸出的冗余度。如果設(shè)為 false,輸出內(nèi)容將包含附加的人類可讀信息。notext 的缺省值為 true。

返回值

成功時(shí)返回 true, 或者在失敗時(shí)返回 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;
?>

參見