betz Sun Jan 18 10:33:50 2004 EDT
Modified files: /phpdoc/en/reference/openssl/functions openssl-csr-new.xml Log: use of var_dump instead of debug_zval_dump Index: phpdoc/en/reference/openssl/functions/openssl-csr-new.xml diff -u phpdoc/en/reference/openssl/functions/openssl-csr-new.xml:1.10 phpdoc/en/reference/openssl/functions/openssl-csr-new.xml:1.11 --- phpdoc/en/reference/openssl/functions/openssl-csr-new.xml:1.10 Tue Dec 2 09:11:33 2003 +++ phpdoc/en/reference/openssl/functions/openssl-csr-new.xml Sun Jan 18 10:33:50 2004 @@ -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 @@ // 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) {