From 5f86c27b40f1902b48436c18a673578c1b397174 Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Tue, 17 Feb 2004 13:19:18 +0000 Subject: [PATCH] using simple comments git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@151610 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/url/functions/http-build-query.xml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/reference/url/functions/http-build-query.xml b/reference/url/functions/http-build-query.xml index 7f278ad812..a1d1f10eee 100644 --- a/reference/url/functions/http-build-query.xml +++ b/reference/url/functions/http-build-query.xml @@ -1,5 +1,5 @@ - + http_build_query @@ -34,10 +34,7 @@ $data = array('foo'=>'bar', 'cow'=>'milk', 'php'=>'hypertext processor'); -echo http_build_query($data); -/* Outputs: - foo=bar&baz=boom&cow=milk&php=hypertext+processor - */ +echo http_build_query($data); // foo=bar&baz=boom&cow=milk&php=hypertext+processor ?> ]]> @@ -124,10 +121,8 @@ class myClass { $data = new myClass(); -echo http_build_query($data); -/* Outputs: - foo=bar&baz=boom - */ +echo http_build_query($data); // foo=bar&baz=boom + ?> ]]>