diff --git a/reference/openssl/functions/openssl-csr-new.xml b/reference/openssl/functions/openssl-csr-new.xml index fa94e9b6cf..cb7a13766d 100644 --- a/reference/openssl/functions/openssl-csr-new.xml +++ b/reference/openssl/functions/openssl-csr-new.xml @@ -1,5 +1,5 @@ - + @@ -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) {