From 58b6214d57e334492e39a9d28085ae62aadd0eb2 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Mon, 20 Dec 2010 02:19:31 +0000 Subject: [PATCH] Fixed bug #53509 (Incorrect Phar Example; Confusing Results) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@306484 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/phar/PharData/copy.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/phar/PharData/copy.xml b/reference/phar/PharData/copy.xml index e61dfb61c7..ea7feb20a0 100644 --- a/reference/phar/PharData/copy.xml +++ b/reference/phar/PharData/copy.xml @@ -79,7 +79,7 @@ try { $phar = new PharData('myphar.tar'); $phar['a'] = 'hi'; $phar->copy('a', 'b'); - echo $phar['b']; // outputs "hi" + echo $phar['b']; // outputs "phar://myphar.tar/b" } catch (Exception $e) { // handle error }