From 0d84055a1b044e267dc52ace7b7ecfd3ede4fd3c Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 22 Jul 2005 12:39:12 +0000 Subject: [PATCH] - example --- http_response_object.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/http_response_object.c b/http_response_object.c index 5ca8edd..28d662a 100644 --- a/http_response_object.c +++ b/http_response_object.c @@ -179,6 +179,8 @@ static inline void _http_response_object_declare_default_properties(TSRMLS_D) DCL_STATIC_PROP_N(PROTECTED, contentDisposition); DCL_STATIC_PROP(PROTECTED, long, bufferSize, HTTP_SENDBUF_SIZE); DCL_STATIC_PROP(PROTECTED, double, throttleDelay, 0.0); + + DCL_STATIC_PROP(PUBLIC, string, dummy, "EMPTY"); } /* ### USERLAND ### */ @@ -583,6 +585,17 @@ PHP_METHOD(HttpResponse, getFile) /* {{{ proto bool HttpResponse::send([bool clean_ob = true]) * * Finally send the entity. + * + * Example: + *
+ * 
+ * 
*/ PHP_METHOD(HttpResponse, send) { -- 2.30.2