From 9fc2e29316b5e4fd98f170cddb8f9307051ac72e Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Sun, 18 Jan 2004 15:33:50 +0000 Subject: [PATCH] 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 --- reference/openssl/functions/openssl-csr-new.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) {