mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
use of var_dump instead of debug_zval_dump
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@149119 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
78ca063282
commit
9fc2e29316
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<!-- splitted from ./en/functions/openssl.xml, last change in rev 1.19 -->
|
||||
<refentry id="function.openssl-csr-new">
|
||||
<refnamediv>
|
||||
|
@ -151,9 +151,9 @@ $sscert = openssl_csr_sign($csr, null, $privkey, 365);
|
|||
// can also store them directly into files.
|
||||
// Typically, you will send the CSR on to your CA who will then issue
|
||||
// you with the "real" certificate.
|
||||
openssl_csr_export($csr, $csrout) and debug_zval_dump($csrout);
|
||||
openssl_x509_export($sscert, $certout) and debug_zval_dump($certout);
|
||||
openssl_pkey_export($privkey, $pkeyout, "mypassword") and debug_zval_dump($pkeyout);
|
||||
openssl_csr_export($csr, $csrout) and var_dump($csrout);
|
||||
openssl_x509_export($sscert, $certout) and var_dump($certout);
|
||||
openssl_pkey_export($privkey, $pkeyout, "mypassword") and var_dump($pkeyout);
|
||||
|
||||
// Show any errors that occurred here
|
||||
while (($e = openssl_error_string()) !== false) {
|
||||
|
|
Loading…
Reference in a new issue