- happy new year
[m6w6/ext-http] / http_response_object.c
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2006, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 /* $Id$ */
14
15
16 #ifdef HAVE_CONFIG_H
17 # include "config.h"
18 #endif
19
20 #define HTTP_WANT_MAGIC
21 #include "php_http.h"
22
23 /* broken static properties in PHP 5.0 */
24 #if defined(ZEND_ENGINE_2) && !defined(WONKY)
25
26 #include "SAPI.h"
27 #include "php_ini.h"
28
29 #include "php_http_api.h"
30 #include "php_http_cache_api.h"
31 #include "php_http_exception_object.h"
32 #include "php_http_headers_api.h"
33 #include "php_http_response_object.h"
34 #include "php_http_send_api.h"
35
36 #define GET_STATIC_PROP(n) *GET_STATIC_PROP_EX(http_response_object_ce, n)
37 #define UPD_STATIC_PROP(t, n, v) UPD_STATIC_PROP_EX(http_response_object_ce, t, n, v)
38 #define SET_STATIC_PROP(n, v) SET_STATIC_PROP_EX(http_response_object_ce, n, v)
39 #define UPD_STATIC_STRL(n, v, l) UPD_STATIC_STRL_EX(http_response_object_ce, n, v, l)
40
41 #define HTTP_BEGIN_ARGS(method, req_args) HTTP_BEGIN_ARGS_EX(HttpResponse, method, 0, req_args)
42 #define HTTP_EMPTY_ARGS(method, ret_ref) HTTP_EMPTY_ARGS_EX(HttpResponse, method, ret_ref)
43 #define HTTP_RESPONSE_ME(method, visibility) PHP_ME(HttpResponse, method, HTTP_ARGS(HttpResponse, method), visibility|ZEND_ACC_STATIC)
44 #define HTTP_RESPONSE_ALIAS(method, func) HTTP_STATIC_ME_ALIAS(method, func, HTTP_ARGS(HttpResponse, method))
45
46 HTTP_BEGIN_ARGS(setHeader, 2)
47 HTTP_ARG_VAL(name, 0)
48 HTTP_ARG_VAL(value, 0)
49 HTTP_ARG_VAL(replace, 0)
50 HTTP_END_ARGS;
51
52 HTTP_BEGIN_ARGS(getHeader, 0)
53 HTTP_ARG_VAL(name, 0)
54 HTTP_END_ARGS;
55
56 HTTP_EMPTY_ARGS(getETag, 0);
57 HTTP_BEGIN_ARGS(setETag, 1)
58 HTTP_ARG_VAL(etag, 0)
59 HTTP_END_ARGS;
60
61 HTTP_EMPTY_ARGS(getLastModified, 0);
62 HTTP_BEGIN_ARGS(setLastModified, 1)
63 HTTP_ARG_VAL(timestamp, 0)
64 HTTP_END_ARGS;
65
66 HTTP_EMPTY_ARGS(getCache, 0);
67 HTTP_BEGIN_ARGS(setCache, 1)
68 HTTP_ARG_VAL(cache, 0)
69 HTTP_END_ARGS;
70
71 HTTP_EMPTY_ARGS(getGzip, 0);
72 HTTP_BEGIN_ARGS(setGzip, 1)
73 HTTP_ARG_VAL(gzip, 0)
74 HTTP_END_ARGS;
75
76 HTTP_EMPTY_ARGS(getCacheControl, 0);
77 HTTP_BEGIN_ARGS(setCacheControl, 1)
78 HTTP_ARG_VAL(cache_control, 0)
79 HTTP_ARG_VAL(max_age, 0)
80 HTTP_END_ARGS;
81
82 HTTP_EMPTY_ARGS(getContentType, 0);
83 HTTP_BEGIN_ARGS(setContentType, 1)
84 HTTP_ARG_VAL(content_type, 0)
85 HTTP_END_ARGS;
86
87 HTTP_BEGIN_ARGS(guessContentType, 1)
88 HTTP_ARG_VAL(magic_file, 0)
89 HTTP_ARG_VAL(magic_mode, 0)
90 HTTP_END_ARGS;
91
92 HTTP_EMPTY_ARGS(getContentDisposition, 0);
93 HTTP_BEGIN_ARGS(setContentDisposition, 1)
94 HTTP_ARG_VAL(filename, 0)
95 HTTP_ARG_VAL(send_inline, 0)
96 HTTP_END_ARGS;
97
98 HTTP_EMPTY_ARGS(getThrottleDelay, 0);
99 HTTP_BEGIN_ARGS(setThrottleDelay, 1)
100 HTTP_ARG_VAL(seconds, 0)
101 HTTP_END_ARGS;
102
103 HTTP_EMPTY_ARGS(getBufferSize, 0);
104 HTTP_BEGIN_ARGS(setBufferSize, 1)
105 HTTP_ARG_VAL(bytes, 0)
106 HTTP_END_ARGS;
107
108 HTTP_EMPTY_ARGS(getData, 0);
109 HTTP_BEGIN_ARGS(setData, 1)
110 HTTP_ARG_VAL(data, 0)
111 HTTP_END_ARGS;
112
113 HTTP_EMPTY_ARGS(getStream, 0);
114 HTTP_BEGIN_ARGS(setStream, 1)
115 HTTP_ARG_VAL(stream, 0)
116 HTTP_END_ARGS;
117
118 HTTP_EMPTY_ARGS(getFile, 0);
119 HTTP_BEGIN_ARGS(setFile, 1)
120 HTTP_ARG_VAL(filepath, 0)
121 HTTP_END_ARGS;
122
123 HTTP_BEGIN_ARGS(send, 0)
124 HTTP_ARG_VAL(clean_ob, 0)
125 HTTP_END_ARGS;
126
127 HTTP_EMPTY_ARGS(capture, 0);
128
129 HTTP_BEGIN_ARGS(redirect, 0)
130 HTTP_ARG_VAL(url, 0)
131 HTTP_ARG_VAL(params, 0)
132 HTTP_ARG_VAL(session, 0)
133 HTTP_ARG_VAL(permanent, 0)
134 HTTP_END_ARGS;
135
136 HTTP_BEGIN_ARGS(status, 1)
137 HTTP_ARG_VAL(code, 0)
138 HTTP_END_ARGS;
139
140 HTTP_EMPTY_ARGS(getRequestHeaders, 0);
141 HTTP_EMPTY_ARGS(getRequestBody, 0);
142
143 #define http_response_object_declare_default_properties() _http_response_object_declare_default_properties(TSRMLS_C)
144 static inline void _http_response_object_declare_default_properties(TSRMLS_D);
145 #define http_grab_response_headers _http_grab_response_headers
146 static void _http_grab_response_headers(void *data, void *arg TSRMLS_DC);
147
148 zend_class_entry *http_response_object_ce;
149 zend_function_entry http_response_object_fe[] = {
150
151 HTTP_RESPONSE_ME(setHeader, ZEND_ACC_PUBLIC)
152 HTTP_RESPONSE_ME(getHeader, ZEND_ACC_PUBLIC)
153
154 HTTP_RESPONSE_ME(setETag, ZEND_ACC_PUBLIC)
155 HTTP_RESPONSE_ME(getETag, ZEND_ACC_PUBLIC)
156
157 HTTP_RESPONSE_ME(setLastModified, ZEND_ACC_PUBLIC)
158 HTTP_RESPONSE_ME(getLastModified, ZEND_ACC_PUBLIC)
159
160 HTTP_RESPONSE_ME(setContentDisposition, ZEND_ACC_PUBLIC)
161 HTTP_RESPONSE_ME(getContentDisposition, ZEND_ACC_PUBLIC)
162
163 HTTP_RESPONSE_ME(setContentType, ZEND_ACC_PUBLIC)
164 HTTP_RESPONSE_ME(getContentType, ZEND_ACC_PUBLIC)
165
166 HTTP_RESPONSE_ME(guessContentType, ZEND_ACC_PUBLIC)
167
168 HTTP_RESPONSE_ME(setCache, ZEND_ACC_PUBLIC)
169 HTTP_RESPONSE_ME(getCache, ZEND_ACC_PUBLIC)
170
171 HTTP_RESPONSE_ME(setCacheControl, ZEND_ACC_PUBLIC)
172 HTTP_RESPONSE_ME(getCacheControl, ZEND_ACC_PUBLIC)
173
174 HTTP_RESPONSE_ME(setGzip, ZEND_ACC_PUBLIC)
175 HTTP_RESPONSE_ME(getGzip, ZEND_ACC_PUBLIC)
176
177 HTTP_RESPONSE_ME(setThrottleDelay, ZEND_ACC_PUBLIC)
178 HTTP_RESPONSE_ME(getThrottleDelay, ZEND_ACC_PUBLIC)
179
180 HTTP_RESPONSE_ME(setBufferSize, ZEND_ACC_PUBLIC)
181 HTTP_RESPONSE_ME(getBufferSize, ZEND_ACC_PUBLIC)
182
183 HTTP_RESPONSE_ME(setData, ZEND_ACC_PUBLIC)
184 HTTP_RESPONSE_ME(getData, ZEND_ACC_PUBLIC)
185
186 HTTP_RESPONSE_ME(setFile, ZEND_ACC_PUBLIC)
187 HTTP_RESPONSE_ME(getFile, ZEND_ACC_PUBLIC)
188
189 HTTP_RESPONSE_ME(setStream, ZEND_ACC_PUBLIC)
190 HTTP_RESPONSE_ME(getStream, ZEND_ACC_PUBLIC)
191
192 HTTP_RESPONSE_ME(send, ZEND_ACC_PUBLIC)
193 HTTP_RESPONSE_ME(capture, ZEND_ACC_PUBLIC)
194
195 HTTP_RESPONSE_ALIAS(redirect, http_redirect)
196 HTTP_RESPONSE_ALIAS(status, http_send_status)
197 HTTP_RESPONSE_ALIAS(getRequestHeaders, http_get_request_headers)
198 HTTP_RESPONSE_ALIAS(getRequestBody, http_get_request_body)
199
200 EMPTY_FUNCTION_ENTRY
201 };
202
203 PHP_MINIT_FUNCTION(http_response_object)
204 {
205 HTTP_REGISTER_CLASS(HttpResponse, http_response_object, NULL, 0);
206 http_response_object_declare_default_properties();
207 return SUCCESS;
208 }
209
210 static inline void _http_response_object_declare_default_properties(TSRMLS_D)
211 {
212 zend_class_entry *ce = http_response_object_ce;
213
214 DCL_STATIC_PROP(PRIVATE, bool, sent, 0);
215 DCL_STATIC_PROP(PRIVATE, bool, catch, 0);
216 DCL_STATIC_PROP(PRIVATE, long, mode, -1);
217 DCL_STATIC_PROP(PRIVATE, long, stream, 0);
218 DCL_STATIC_PROP_N(PRIVATE, file);
219 DCL_STATIC_PROP_N(PRIVATE, data);
220 DCL_STATIC_PROP(PROTECTED, bool, cache, 0);
221 DCL_STATIC_PROP(PROTECTED, bool, gzip, 0);
222 DCL_STATIC_PROP_N(PROTECTED, eTag);
223 DCL_STATIC_PROP(PROTECTED, long, lastModified, 0);
224 DCL_STATIC_PROP_N(PROTECTED, cacheControl);
225 DCL_STATIC_PROP_N(PROTECTED, contentType);
226 DCL_STATIC_PROP_N(PROTECTED, contentDisposition);
227 DCL_STATIC_PROP(PROTECTED, long, bufferSize, HTTP_SENDBUF_SIZE);
228 DCL_STATIC_PROP(PROTECTED, double, throttleDelay, 0.0);
229
230 #ifndef WONKY
231 DCL_CONST(long, "REDIRECT", HTTP_REDIRECT);
232 DCL_CONST(long, "REDIRECT_PERM", HTTP_REDIRECT_PERM);
233 DCL_CONST(long, "REDIRECT_POST", HTTP_REDIRECT_POST);
234 DCL_CONST(long, "REDIRECT_TEMP", HTTP_REDIRECT_TEMP);
235 #endif /* WONKY */
236 }
237
238 static void _http_grab_response_headers(void *data, void *arg TSRMLS_DC)
239 {
240 phpstr_appendl(PHPSTR(arg), ((sapi_header_struct *)data)->header);
241 phpstr_appends(PHPSTR(arg), HTTP_CRLF);
242 }
243
244 /* ### USERLAND ### */
245
246 /* {{{ proto static bool HttpResponse::setHeader(string name, mixed value[, bool replace = true])
247 *
248 * Send an HTTP header.
249 *
250 * Expects a string parameter containing the name of the header and a mixed
251 * parameter containing the value of the header, which will be converted to
252 * a string. Additionally accepts an optional boolean parameter, which
253 * specifies whether an existing header should be replaced. If the second
254 * parameter is unset no header with this name will be sent.
255 *
256 * Returns TRUE on success, or FALSE on failure.
257 *
258 * Throws HttpHeaderException if http.only_exceptions is TRUE.
259 */
260 PHP_METHOD(HttpResponse, setHeader)
261 {
262 zend_bool replace = 1;
263 char *name;
264 int name_len = 0;
265 zval *value = NULL, *orig = NULL;
266
267 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz/!|b", &name, &name_len, &value, &replace)) {
268 RETURN_FALSE;
269 }
270 if (SG(headers_sent)) {
271 http_error(HE_WARNING, HTTP_E_HEADER, "Cannot add another header when headers have already been sent");
272 RETURN_FALSE;
273 }
274 if (!name_len) {
275 http_error(HE_WARNING, HTTP_E_HEADER, "Cannot send anonymous headers");
276 RETURN_FALSE;
277 }
278
279 /* delete header if value == null */
280 if (!value || Z_TYPE_P(value) == IS_NULL) {
281 RETURN_SUCCESS(http_send_header_ex(name, name_len, "", 0, replace, NULL));
282 }
283 /* send multiple header if replace is false and value is an array */
284 if (!replace && Z_TYPE_P(value) == IS_ARRAY) {
285 zval **data;
286 HashPosition pos;
287
288 FOREACH_VAL(pos, value, data) {
289 zval *orig = *data;
290
291 convert_to_string_ex(data);
292 if (SUCCESS != http_send_header_ex(name, name_len, Z_STRVAL_PP(data), Z_STRLEN_PP(data), 0, NULL)) {
293 if (orig != *data) {
294 zval_ptr_dtor(data);
295 }
296 RETURN_FALSE;
297 }
298 if (orig != *data) {
299 zval_ptr_dtor(data);
300 }
301 }
302 RETURN_TRUE;
303 }
304 /* send standard header */
305 orig = value;
306 convert_to_string_ex(&value);
307 RETVAL_SUCCESS(http_send_header_ex(name, name_len, Z_STRVAL_P(value), Z_STRLEN_P(value), replace, NULL));
308 if (orig != value) {
309 zval_ptr_dtor(&value);
310 }
311 }
312 /* }}} */
313
314 /* {{{ proto static mixed HttpResponse::getHeader([string name])
315 *
316 * Get header(s) about to be sent.
317 *
318 * Accepts a string as optional parameter which specifies the name of the
319 * header to read. If the parameter is empty or omitted, an associative array
320 * with all headers will be returned.
321 *
322 * Returns either a string containing the value of the header matching name,
323 * FALSE on failure, or an associative array with all headers.
324 */
325 PHP_METHOD(HttpResponse, getHeader)
326 {
327 char *name = NULL;
328 int name_len = 0;
329 phpstr headers;
330
331 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &name, &name_len)) {
332 RETURN_FALSE;
333 }
334
335 phpstr_init(&headers);
336 zend_llist_apply_with_argument(&SG(sapi_headers).headers, http_grab_response_headers, &headers TSRMLS_CC);
337 phpstr_fix(&headers);
338
339 if (name && name_len) {
340 zval **header;
341 HashTable headers_ht;
342
343 zend_hash_init(&headers_ht, sizeof(zval *), NULL, ZVAL_PTR_DTOR, 0);
344 if ( (SUCCESS == http_parse_headers_ex(PHPSTR_VAL(&headers), &headers_ht, 1)) &&
345 (SUCCESS == zend_hash_find(&headers_ht, name, name_len + 1, (void **) &header))) {
346 RETVAL_ZVAL(*header, 1, 0);
347 } else {
348 RETVAL_NULL();
349 }
350 zend_hash_destroy(&headers_ht);
351 } else {
352 array_init(return_value);
353 http_parse_headers_ex(PHPSTR_VAL(&headers), Z_ARRVAL_P(return_value), 1);
354 }
355
356 phpstr_dtor(&headers);
357 }
358 /* }}} */
359
360 /* {{{ proto static bool HttpResponse::setCache(bool cache)
361 *
362 * Whether it sould be attempted to cache the entitity.
363 * This will result in necessary caching headers and checks of clients
364 * "If-Modified-Since" and "If-None-Match" headers. If one of those headers
365 * matches a "304 Not Modified" status code will be issued.
366 *
367 * NOTE: If you're using sessions, be shure that you set session.cache_limiter
368 * to something more appropriate than "no-cache"!
369 *
370 * Expects a boolean as parameter specifying whether caching should be attempted.
371 *
372 * Returns TRUE ons success, or FALSE on failure.
373 */
374 PHP_METHOD(HttpResponse, setCache)
375 {
376 zend_bool do_cache = 0;
377
378 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &do_cache)) {
379 RETURN_FALSE;
380 }
381
382 RETURN_SUCCESS(UPD_STATIC_PROP(bool, cache, do_cache));
383 }
384 /* }}} */
385
386 /* {{{ proto static bool HttpResponse::getCache()
387 *
388 * Get current caching setting.
389 *
390 * Returns TRUE if caching should be attempted, else FALSE.
391 */
392 PHP_METHOD(HttpResponse, getCache)
393 {
394 NO_ARGS;
395
396 IF_RETVAL_USED {
397 zval *cache_p, *cache = convert_to_type_ex(IS_BOOL, GET_STATIC_PROP(cache), &cache_p);
398
399 RETVAL_ZVAL(cache, 1, 0);
400
401 if (cache_p) {
402 zval_ptr_dtor(&cache_p);
403 }
404 }
405 }
406 /* }}}*/
407
408 /* {{{ proto static bool HttpResponse::setGzip(bool gzip)
409 *
410 * Enable on-thy-fly gzipping of the sent entity.
411 *
412 * Expects a boolean as parameter indicating if GZip compression should be enabled.
413 *
414 * Returns TRUE on success, or FALSE on failure.
415 */
416 PHP_METHOD(HttpResponse, setGzip)
417 {
418 zend_bool do_gzip = 0;
419
420 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &do_gzip)) {
421 RETURN_FALSE;
422 }
423
424 RETURN_SUCCESS(UPD_STATIC_PROP(bool, gzip, do_gzip));
425 }
426 /* }}} */
427
428 /* {{{ proto static bool HttpResponse::getGzip()
429 *
430 * Get current gzipping setting.
431 *
432 * Returns TRUE if GZip compression is enabled, else FALSE.
433 */
434 PHP_METHOD(HttpResponse, getGzip)
435 {
436 NO_ARGS;
437
438 IF_RETVAL_USED {
439 zval *gzip_p, *gzip = convert_to_type_ex(IS_BOOL, GET_STATIC_PROP(gzip), &gzip_p);
440
441 RETVAL_ZVAL(gzip, 1, 0);
442
443 if (gzip_p) {
444 zval_ptr_dtor(&gzip_p);
445 }
446 }
447 }
448 /* }}} */
449
450 /* {{{ proto static bool HttpResponse::setCacheControl(string control[, int max_age = 0])
451 *
452 * Set a custom cache-control header, usually being "private" or "public";
453 * The max_age parameter controls how long the cache entry is valid on the client side.
454 *
455 * Expects a string parameter containing the primary cache control setting.
456 * Addtitionally accepts an int parameter specifying the max-age setting.
457 *
458 * Returns TRUE on success, or FALSE if control does not match one of
459 * "public" , "private" or "no-cache".
460 *
461 * Throws HttpInvalidParamException if http.only_exceptions is TRUE.
462 */
463 PHP_METHOD(HttpResponse, setCacheControl)
464 {
465 char *ccontrol, *cctl;
466 int cc_len;
467 long max_age = 0;
468
469 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &ccontrol, &cc_len, &max_age)) {
470 RETURN_FALSE;
471 }
472
473 if (strcmp(ccontrol, "public") && strcmp(ccontrol, "private") && strcmp(ccontrol, "no-cache")) {
474 http_error_ex(HE_WARNING, HTTP_E_INVALID_PARAM, "Cache-Control '%s' doesn't match public, private or no-cache", ccontrol);
475 RETURN_FALSE;
476 } else {
477 size_t cctl_len = spprintf(&cctl, 0, "%s, must-revalidate, max-age=%ld", ccontrol, max_age);
478 RETVAL_SUCCESS(UPD_STATIC_STRL(cacheControl, cctl, cctl_len));
479 efree(cctl);
480 }
481 }
482 /* }}} */
483
484 /* {{{ proto static string HttpResponse::getCacheControl()
485 *
486 * Get current Cache-Control header setting.
487 *
488 * Returns the current cache control setting as a string like sent in a header.
489 */
490 PHP_METHOD(HttpResponse, getCacheControl)
491 {
492 NO_ARGS;
493
494 IF_RETVAL_USED {
495 zval *ccontrol_p, *ccontrol = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(cacheControl), &ccontrol_p);
496
497 RETVAL_ZVAL(ccontrol, 1, 0);
498
499 if (ccontrol_p) {
500 zval_ptr_dtor(&ccontrol_p);
501 }
502 }
503 }
504 /* }}} */
505
506 /* {{{ proto static bool HttpResponse::setContentType(string content_type)
507 *
508 * Set the content-type of the sent entity.
509 *
510 * Expects a string as parameter specifying the content type of the sent entity.
511 *
512 * Returns TRUE on success, or FALSE if the content type does not seem to
513 * contain a primary and secondary content type part.
514 *
515 * Throws HttpInvalidParamException if http.only_exceptions is TRUE.
516 */
517 PHP_METHOD(HttpResponse, setContentType)
518 {
519 char *ctype;
520 int ctype_len;
521
522 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &ctype, &ctype_len)) {
523 RETURN_FALSE;
524 }
525
526 HTTP_CHECK_CONTENT_TYPE(ctype, RETURN_FALSE);
527 RETURN_SUCCESS(UPD_STATIC_STRL(contentType, ctype, ctype_len));
528 }
529 /* }}} */
530
531 /* {{{ proto static string HttpResponse::getContentType()
532 *
533 * Get current Content-Type header setting.
534 *
535 * Returns the currently set content type as string.
536 */
537 PHP_METHOD(HttpResponse, getContentType)
538 {
539 NO_ARGS;
540
541 IF_RETVAL_USED {
542 zval *ctype_p, *ctype = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(contentType), &ctype_p);
543
544 RETVAL_ZVAL(ctype, 1, 0);
545
546 if (ctype_p) {
547 zval_ptr_dtor(&ctype_p);
548 }
549 }
550 }
551 /* }}} */
552
553 /* {{{ proto static string HttpResponse::guessContentType(string magic_file[, int magic_mode = MAGIC_MIME])
554 *
555 * Attempts to guess the content type of supplied payload through libmagic.
556 * If the attempt is successful, the guessed content type will automatically
557 * be set as response content type.
558 *
559 * Expects a string parameter specifying the magic.mime database to use.
560 * Additionally accepts an optional int parameter, being flags for libmagic.
561 *
562 * Returns the guessed content type on success, or FALSE on failure.
563 *
564 * Throws HttpRuntimeException, HttpInvalidParamException
565 * if http.only_exceptions is TRUE.
566 */
567 PHP_METHOD(HttpResponse, guessContentType)
568 {
569 char *magic_file, *ct = NULL;
570 int magic_file_len;
571 long magic_mode = 0;
572
573 RETVAL_FALSE;
574
575 #ifdef HTTP_HAVE_MAGIC
576 magic_mode = MAGIC_MIME;
577
578 SET_EH_THROW_HTTP();
579 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &magic_file, &magic_file_len, &magic_mode)) {
580 switch (Z_LVAL_P(GET_STATIC_PROP(mode))) {
581 case SEND_DATA:
582 {
583 zval *data = GET_STATIC_PROP(data);
584 ct = http_guess_content_type(magic_file, magic_mode, Z_STRVAL_P(data), Z_STRLEN_P(data), SEND_DATA);
585 }
586 break;
587
588 case SEND_RSRC:
589 {
590 php_stream *s;
591 zval *z = GET_STATIC_PROP(stream);
592 z->type = IS_RESOURCE;
593 php_stream_from_zval(s, &z);
594 ct = http_guess_content_type(magic_file, magic_mode, s, 0, SEND_RSRC);
595 }
596 break;
597
598 default:
599 ct = http_guess_content_type(magic_file, magic_mode, Z_STRVAL_P(GET_STATIC_PROP(file)), 0, -1);
600 break;
601 }
602 if (ct) {
603 UPD_STATIC_PROP(string, contentType, ct);
604 RETVAL_STRING(ct, 0);
605 }
606 }
607 SET_EH_NORMAL();
608 #else
609 http_error(HE_THROW, HTTP_E_RUNTIME, "Cannot guess Content-Type; libmagic not available");
610 #endif
611 }
612 /* }}} */
613
614 /* {{{ proto static bool HttpResponse::setContentDisposition(string filename[, bool inline = false])
615 *
616 * Set the Content-Disposition. The Content-Disposition header is very useful
617 * if the data actually sent came from a file or something similar, that should
618 * be "saved" by the client/user (i.e. by browsers "Save as..." popup window).
619 *
620 * Expects a string parameter specifying the file name the "Save as..." dialogue
621 * should display. Optionally accepts a bool parameter, which, if set to true
622 * and the user agent knows how to handle the content type, will probably not
623 * cause the popup window to be shown.
624 *
625 * Returns TRUE on success or FALSE on failure.
626 */
627 PHP_METHOD(HttpResponse, setContentDisposition)
628 {
629 char *file, *cd;
630 int file_len;
631 size_t cd_len;
632 zend_bool send_inline = 0;
633
634 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &file, &file_len, &send_inline)) {
635 RETURN_FALSE;
636 }
637
638 cd_len = spprintf(&cd, 0, "%s; filename=\"%s\"", send_inline ? "inline" : "attachment", file);
639 RETVAL_SUCCESS(UPD_STATIC_STRL(contentDisposition, cd, cd_len));
640 efree(cd);
641 }
642 /* }}} */
643
644 /* {{{ proto static string HttpResponse::getContentDisposition()
645 *
646 * Get current Content-Disposition setting.
647 *
648 * Returns the current content disposition as string like sent in a header.
649 */
650 PHP_METHOD(HttpResponse, getContentDisposition)
651 {
652 NO_ARGS;
653
654 IF_RETVAL_USED {
655 zval *cd_p, *cd = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(contentDisposition), &cd_p);
656
657 RETVAL_ZVAL(cd, 1, 0);
658
659 if (cd_p) {
660 zval_ptr_dtor(&cd_p);
661 }
662 }
663 }
664 /* }}} */
665
666 /* {{{ proto static bool HttpResponse::setETag(string etag)
667 *
668 * Set a custom ETag. Use this only if you know what you're doing.
669 *
670 * Expects an unquoted string as parameter containing the ETag.
671 *
672 * Returns TRUE on success, or FALSE on failure.
673 */
674 PHP_METHOD(HttpResponse, setETag)
675 {
676 char *etag;
677 int etag_len;
678
679 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &etag, &etag_len)) {
680 RETURN_FALSE;
681 }
682
683 RETURN_SUCCESS(UPD_STATIC_STRL(eTag, etag, etag_len));
684 }
685 /* }}} */
686
687 /* {{{ proto static string HttpResponse::getETag()
688 *
689 * Get calculated or previously set custom ETag.
690 *
691 * Returns the calculated or previously set ETag as unquoted string.
692 */
693 PHP_METHOD(HttpResponse, getETag)
694 {
695 NO_ARGS;
696
697 IF_RETVAL_USED {
698 zval *etag_p, *etag = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(eTag), &etag_p);
699
700 RETVAL_ZVAL(etag, 1, 0);
701
702 if (etag_p) {
703 zval_ptr_dtor(&etag_p);
704 }
705 }
706 }
707 /* }}} */
708
709 /* {{{ proto static bool HttpResponse::setLastModified(int timestamp)
710 *
711 * Set a custom Last-Modified date.
712 *
713 * Expects an unix timestamp as parameter representing the last modification
714 * time of the sent entity.
715 *
716 * Returns TRUE on success, or FALSE on failure.
717 */
718 PHP_METHOD(HttpResponse, setLastModified)
719 {
720 long lm;
721
722 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &lm)) {
723 RETURN_FALSE;
724 }
725
726 RETURN_SUCCESS(UPD_STATIC_PROP(long, lastModified, lm));
727 }
728 /* }}} */
729
730 /* {{{ proto static int HttpResponse::getLastModified()
731 *
732 * Get calculated or previously set custom Last-Modified date.
733 *
734 * Returns the calculated or previously set unix timestamp.
735 */
736 PHP_METHOD(HttpResponse, getLastModified)
737 {
738 NO_ARGS;
739
740 IF_RETVAL_USED {
741 zval *lm_p, *lm = convert_to_type_ex(IS_LONG, GET_STATIC_PROP(lastModified), &lm_p);
742
743 RETVAL_ZVAL(lm, 1, 0);
744
745 if (lm_p) {
746 zval_ptr_dtor(&lm_p);
747 }
748 }
749 }
750 /* }}} */
751
752 /* {{{ proto static bool HttpResponse::setThrottleDelay(double seconds)
753 *
754 * Sets the throttle delay for use with HttpResponse::setBufferSize().
755 *
756 * Provides a basic throttling mechanism, which will yield the current process
757 * resp. thread until the entity has been completely sent, though.
758 *
759 * Note: This doesn't really work with the FastCGI SAPI.
760 *
761 * Expects a double parameter specifying the seconds too sleep() after
762 * each chunk sent.
763 *
764 * Returns TRUE on success, or FALSE on failure.
765 */
766 PHP_METHOD(HttpResponse, setThrottleDelay)
767 {
768 double seconds;
769
770 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &seconds)) {
771 RETURN_FALSE;
772 }
773 RETURN_SUCCESS(UPD_STATIC_PROP(double, throttleDelay, seconds));
774 }
775 /* }}} */
776
777 /* {{{ proto static double HttpResponse::getThrottleDelay()
778 *
779 * Get the current throttle delay.
780 *
781 * Returns a double representing the throttle delay in seconds.
782 */
783 PHP_METHOD(HttpResponse, getThrottleDelay)
784 {
785 NO_ARGS;
786
787 IF_RETVAL_USED {
788 zval *delay_p, *delay = convert_to_type_ex(IS_DOUBLE, GET_STATIC_PROP(throttleDelay), &delay_p);
789
790 RETVAL_ZVAL(delay, 1, 0);
791
792 if (delay_p) {
793 zval_ptr_dtor(&delay_p);
794 }
795 }
796 }
797 /* }}} */
798
799 /* {{{ proto static bool HttpResponse::setBufferSize(int bytes)
800 *
801 * Sets the send buffer size for use with HttpResponse::setThrottleDelay().
802 *
803 * Provides a basic throttling mechanism, which will yield the current process
804 * resp. thread until the entity has been completely sent, though.
805 *
806 * Note: This doesn't really work with the FastCGI SAPI.
807 *
808 * Expects an int parameter representing the chunk size in bytes.
809 *
810 * Returns TRUE on success, or FALSE on failure.
811 */
812 PHP_METHOD(HttpResponse, setBufferSize)
813 {
814 long bytes;
815
816 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &bytes)) {
817 RETURN_FALSE;
818 }
819 RETURN_SUCCESS(UPD_STATIC_PROP(long, bufferSize, bytes));
820 }
821 /* }}} */
822
823 /* {{{ proto static int HttpResponse::getBufferSize()
824 *
825 * Get current buffer size.
826 *
827 * Returns an int representing the current buffer size in bytes.
828 */
829 PHP_METHOD(HttpResponse, getBufferSize)
830 {
831 NO_ARGS;
832
833 IF_RETVAL_USED {
834 zval *size_p, *size = convert_to_type_ex(IS_LONG, GET_STATIC_PROP(bufferSize), &size_p);
835
836 RETVAL_ZVAL(size, 1, 0);
837
838 if (size_p) {
839 zval_ptr_dtor(&size_p);
840 }
841 }
842 }
843 /* }}} */
844
845 /* {{{ proto static bool HttpResponse::setData(mixed data)
846 *
847 * Set the data to be sent.
848 *
849 * Expects one parameter, which will be converted to a string and contains
850 * the data to send.
851 *
852 * Returns TRUE on success, or FALSE on failure.
853 */
854 PHP_METHOD(HttpResponse, setData)
855 {
856 char *etag;
857 zval *the_data;
858
859 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &the_data)) {
860 RETURN_FALSE;
861 }
862 if (Z_TYPE_P(the_data) != IS_STRING) {
863 convert_to_string_ex(&the_data);
864 }
865
866 if ( (SUCCESS != SET_STATIC_PROP(data, the_data)) ||
867 (SUCCESS != UPD_STATIC_PROP(long, mode, SEND_DATA))) {
868 RETURN_FALSE;
869 }
870
871 UPD_STATIC_PROP(long, lastModified, http_last_modified(the_data, SEND_DATA));
872 if ((etag = http_etag(Z_STRVAL_P(the_data), Z_STRLEN_P(the_data), SEND_DATA))) {
873 UPD_STATIC_PROP(string, eTag, etag);
874 efree(etag);
875 }
876
877 RETURN_TRUE;
878 }
879 /* }}} */
880
881 /* {{{ proto static string HttpResponse::getData()
882 *
883 * Get the previously set data to be sent.
884 *
885 * Returns a string containing the previously set data to send.
886 */
887 PHP_METHOD(HttpResponse, getData)
888 {
889 NO_ARGS;
890
891 IF_RETVAL_USED {
892 zval *the_data = GET_STATIC_PROP(data);
893
894 RETURN_ZVAL(the_data, 1, 0);
895 }
896 }
897 /* }}} */
898
899 /* {{{ proto static bool HttpResponse::setStream(resource stream)
900 *
901 * Set the resource to be sent.
902 *
903 * Expects a resource parameter referencing an already opened stream from
904 * which the data to send will be read.
905 *
906 * Returns TRUE on success, or FALSE on failure.
907 */
908 PHP_METHOD(HttpResponse, setStream)
909 {
910 char *etag;
911 zval *the_stream;
912 php_stream *the_real_stream;
913 php_stream_statbuf ssb;
914
915 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &the_stream)) {
916 RETURN_FALSE;
917 }
918
919 php_stream_from_zval(the_real_stream, &the_stream);
920 if (php_stream_stat(the_real_stream, &ssb)) {
921 RETURN_FALSE;
922 }
923
924 if ( (SUCCESS != UPD_STATIC_PROP(long, stream, Z_LVAL_P(the_stream))) ||
925 (SUCCESS != UPD_STATIC_PROP(long, mode, SEND_RSRC))) {
926 RETURN_FALSE;
927 }
928 zend_list_addref(Z_LVAL_P(the_stream));
929
930 UPD_STATIC_PROP(long, lastModified, http_last_modified(the_real_stream, SEND_RSRC));
931 if ((etag = http_etag(the_real_stream, 0, SEND_RSRC))) {
932 UPD_STATIC_PROP(string, eTag, etag);
933 efree(etag);
934 }
935
936 RETURN_TRUE;
937 }
938 /* }}} */
939
940 /* {{{ proto static resource HttpResponse::getStream()
941 *
942 * Get the previously set resource to be sent.
943 *
944 * Returns the previously set resource.
945 */
946 PHP_METHOD(HttpResponse, getStream)
947 {
948 NO_ARGS;
949
950 IF_RETVAL_USED {
951 zval *stream_p;
952
953 RETVAL_RESOURCE(Z_LVAL_P(convert_to_type_ex(IS_LONG, GET_STATIC_PROP(stream), &stream_p)));
954
955 if (stream_p) {
956 zval_ptr_dtor(&stream_p);
957 }
958 }
959 }
960 /* }}} */
961
962 /* {{{ proto static bool HttpResponse::setFile(string file)
963 *
964 * Set the file to be sent.
965 *
966 * Expects a string as parameter, specifying the path to the file to send.
967 *
968 * Returns TRUE on success, or FALSE on failure.
969 */
970 PHP_METHOD(HttpResponse, setFile)
971 {
972 char *the_file, *etag;
973 int file_len;
974 php_stream_statbuf ssb;
975
976 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &the_file, &file_len)) {
977 RETURN_FALSE;
978 }
979
980 if (php_stream_stat_path(the_file, &ssb)) {
981 RETURN_FALSE;
982 }
983
984 if ( (SUCCESS != UPD_STATIC_STRL(file, the_file, file_len)) ||
985 (SUCCESS != UPD_STATIC_PROP(long, mode, -1))) {
986 RETURN_FALSE;
987 }
988
989 UPD_STATIC_PROP(long, lastModified, http_last_modified(the_file, -1));
990 if ((etag = http_etag(the_file, 0, -1))) {
991 UPD_STATIC_PROP(string, eTag, etag);
992 efree(etag);
993 }
994
995 RETURN_TRUE;
996 }
997 /* }}} */
998
999 /* {{{ proto static string HttpResponse::getFile()
1000 *
1001 * Get the previously set file to be sent.
1002 *
1003 * Returns the previously set path to the file to send as string.
1004 */
1005 PHP_METHOD(HttpResponse, getFile)
1006 {
1007 NO_ARGS;
1008
1009 IF_RETVAL_USED {
1010 zval *the_file_p, *the_file = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(file), &the_file_p);
1011
1012 RETVAL_ZVAL(the_file, 1, 0);
1013
1014 if (the_file_p) {
1015 zval_ptr_dtor(&the_file_p);
1016 }
1017 }
1018 }
1019 /* }}} */
1020
1021 /* {{{ proto static bool HttpResponse::send([bool clean_ob = true])
1022 *
1023 * Finally send the entity.
1024 *
1025 * Accepts an optional boolean parameter, specifying wheter the ouput
1026 * buffers should be discarded prior sending. A successful caching attempt
1027 * will cause a script termination, and write a log entry if the INI setting
1028 * http.cache_log is set.
1029 *
1030 * Returns TRUE on success, or FALSE on failure.
1031 *
1032 * Throws HttpHeaderException, HttpResponseException if http.onyl_excpetions is TRUE.
1033 *
1034 * Example:
1035 * <pre>
1036 * <?php
1037 * HttpResponse::setCache(true);
1038 * HttpResponse::setContentType('application/pdf');
1039 * HttpResponse::setContentDisposition("$user.pdf", false);
1040 * HttpResponse::setFile('sheet.pdf');
1041 * HttpResponse::send();
1042 * ?>
1043 * </pre>
1044 */
1045 PHP_METHOD(HttpResponse, send)
1046 {
1047 zval *sent;
1048 zend_bool clean_ob = 1;
1049
1050 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &clean_ob)) {
1051 RETURN_FALSE;
1052 }
1053
1054 HTTP_CHECK_HEADERS_SENT(RETURN_FALSE);
1055
1056 sent = GET_STATIC_PROP(sent);
1057 if (Z_LVAL_P(sent)) {
1058 http_error(HE_WARNING, HTTP_E_RESPONSE, "Cannot send HttpResponse, response has already been sent");
1059 RETURN_FALSE;
1060 } else {
1061 Z_LVAL_P(sent) = 1;
1062 }
1063
1064 /* capture mode */
1065 if (zval_is_true(GET_STATIC_PROP(catch))) {
1066 zval *etag_p, *the_data;
1067
1068 MAKE_STD_ZVAL(the_data);
1069 php_ob_get_buffer(the_data TSRMLS_CC);
1070 SET_STATIC_PROP(data, the_data);
1071 ZVAL_LONG(GET_STATIC_PROP(mode), SEND_DATA);
1072
1073 if (!Z_STRLEN_P(convert_to_type_ex(IS_STRING, GET_STATIC_PROP(eTag), &etag_p))) {
1074 char *etag = http_etag(Z_STRVAL_P(the_data), Z_STRLEN_P(the_data), SEND_DATA);
1075 if (etag) {
1076 UPD_STATIC_PROP(string, eTag, etag);
1077 efree(etag);
1078 }
1079 }
1080 zval_ptr_dtor(&the_data);
1081
1082 if (etag_p) {
1083 zval_ptr_dtor(&etag_p);
1084 }
1085
1086 clean_ob = 1;
1087 }
1088
1089 if (clean_ob) {
1090 /* interrupt on-the-fly etag generation */
1091 HTTP_G(etag).started = 0;
1092 /* discard previous output buffers */
1093 php_end_ob_buffers(0 TSRMLS_CC);
1094 }
1095
1096 /* caching */
1097 if (zval_is_true(GET_STATIC_PROP(cache))) {
1098 zval *cctl, *cctl_p, *etag, *etag_p, *lmod, *lmod_p;
1099
1100 etag = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(eTag), &etag_p);
1101 lmod = convert_to_type_ex(IS_LONG, GET_STATIC_PROP(lastModified), &lmod_p);
1102 cctl = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(cacheControl), &cctl_p);
1103
1104 http_cache_etag(Z_STRVAL_P(etag), Z_STRLEN_P(etag), Z_STRVAL_P(cctl), Z_STRLEN_P(cctl));
1105 http_cache_last_modified(Z_LVAL_P(lmod), Z_LVAL_P(lmod) ? Z_LVAL_P(lmod) : time(NULL), Z_STRVAL_P(cctl), Z_STRLEN_P(cctl));
1106
1107 if (etag_p) zval_ptr_dtor(&etag_p);
1108 if (lmod_p) zval_ptr_dtor(&lmod_p);
1109 if (cctl_p) zval_ptr_dtor(&cctl_p);
1110
1111 if (php_ob_handler_used("blackhole" TSRMLS_CC)) {
1112 RETURN_TRUE;
1113 }
1114 }
1115
1116 /* content type */
1117 {
1118 zval *ctype_p, *ctype = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(contentType), &ctype_p);
1119 if (Z_STRLEN_P(ctype)) {
1120 http_send_content_type(Z_STRVAL_P(ctype), Z_STRLEN_P(ctype));
1121 } else {
1122 char *ctypes = INI_STR("default_mimetype");
1123 size_t ctlen = ctypes ? strlen(ctypes) : 0;
1124
1125 if (ctlen) {
1126 http_send_content_type(ctypes, ctlen);
1127 } else {
1128 http_send_content_type("application/x-octetstream", lenof("application/x-octetstream"));
1129 }
1130 }
1131 if (ctype_p) {
1132 zval_ptr_dtor(&ctype_p);
1133 }
1134 }
1135
1136 /* content disposition */
1137 {
1138 zval *cd_p, *cd = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(contentDisposition), &cd_p);
1139 if (Z_STRLEN_P(cd)) {
1140 http_send_header_ex("Content-Disposition", lenof("Content-Disposition"), Z_STRVAL_P(cd), Z_STRLEN_P(cd), 1, NULL);
1141 }
1142 if (cd_p) {
1143 zval_ptr_dtor(&cd_p);
1144 }
1145 }
1146
1147 /* throttling */
1148 {
1149 zval *bsize_p, *bsize = convert_to_type_ex(IS_LONG, GET_STATIC_PROP(bufferSize), &bsize_p);
1150 zval *delay_p, *delay = convert_to_type_ex(IS_DOUBLE, GET_STATIC_PROP(throttleDelay), &delay_p);
1151 HTTP_G(send).buffer_size = Z_LVAL_P(bsize);
1152 HTTP_G(send).throttle_delay = Z_DVAL_P(delay);
1153 if (bsize_p) zval_ptr_dtor(&bsize_p);
1154 if (delay_p) zval_ptr_dtor(&delay_p);
1155 }
1156
1157 /* gzip */
1158 HTTP_G(send).deflate.encoding = zval_is_true(GET_STATIC_PROP(gzip));
1159
1160 /* start ob */
1161 php_start_ob_buffer(NULL, HTTP_G(send).buffer_size, 0 TSRMLS_CC);
1162
1163 /* send */
1164 switch (Z_LVAL_P(GET_STATIC_PROP(mode)))
1165 {
1166 case SEND_DATA:
1167 {
1168 zval *zdata_p, *zdata = convert_to_type_ex(IS_STRING, GET_STATIC_PROP(data), &zdata_p);
1169 RETVAL_SUCCESS(http_send_data_ex(Z_STRVAL_P(zdata), Z_STRLEN_P(zdata), 1));
1170 if (zdata_p) zval_ptr_dtor(&zdata_p);
1171 return;
1172 }
1173
1174 case SEND_RSRC:
1175 {
1176 php_stream *the_real_stream;
1177 zval *the_stream_p, *the_stream = convert_to_type_ex(IS_LONG, GET_STATIC_PROP(stream), &the_stream_p);
1178 the_stream->type = IS_RESOURCE;
1179 php_stream_from_zval(the_real_stream, &the_stream);
1180 RETVAL_SUCCESS(http_send_stream_ex(the_real_stream, 0, 1));
1181 if (the_stream_p) zval_ptr_dtor(&the_stream_p);
1182 return;
1183 }
1184
1185 default:
1186 {
1187 zval *file_p;
1188 RETVAL_SUCCESS(http_send_file_ex(Z_STRVAL_P(convert_to_type_ex(IS_STRING, GET_STATIC_PROP(file), &file_p)), 1));
1189 if (file_p) zval_ptr_dtor(&file_p);
1190 return;
1191 }
1192 }
1193 }
1194 /* }}} */
1195
1196 /* {{{ proto static void HttpResponse::capture()
1197 *
1198 * Capture script output.
1199 *
1200 * Example:
1201 * <pre>
1202 * <?php
1203 * HttpResponse::setCache(true);
1204 * HttpResponse::capture();
1205 * // script follows
1206 * ?>
1207 * </pre>
1208 */
1209 PHP_METHOD(HttpResponse, capture)
1210 {
1211 NO_ARGS;
1212
1213 HTTP_CHECK_HEADERS_SENT(RETURN_FALSE);
1214
1215 UPD_STATIC_PROP(long, catch, 1);
1216
1217 php_end_ob_buffers(0 TSRMLS_CC);
1218 php_start_ob_buffer(NULL, 40960, 0 TSRMLS_CC);
1219
1220 /* register shutdown function */
1221 {
1222 zval func, retval, arg, *argp[1];
1223
1224 INIT_PZVAL(&arg);
1225 INIT_PZVAL(&func);
1226 INIT_PZVAL(&retval);
1227 ZVAL_STRINGL(&func, "register_shutdown_function", lenof("register_shutdown_function"), 0);
1228
1229 array_init(&arg);
1230 add_next_index_stringl(&arg, "HttpResponse", lenof("HttpResponse"), 1);
1231 add_next_index_stringl(&arg, "send", lenof("send"), 1);
1232 argp[0] = &arg;
1233 call_user_function(EG(function_table), NULL, &func, &retval, 1, argp TSRMLS_CC);
1234 zval_dtor(&arg);
1235 }
1236 }
1237 /* }}} */
1238
1239 #endif /* ZEND_ENGINE_2 && !WONKY */
1240
1241 /*
1242 * Local variables:
1243 * tab-width: 4
1244 * c-basic-offset: 4
1245 * End:
1246 * vim600: noet sw=4 ts=4 fdm=marker
1247 * vim<600: noet sw=4 ts=4
1248 */
1249