Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | @Added PHP API for Zend's ticks | Stig Bakken | 2000-08-29 | 1 | -9/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | Added PHP API for registering tick functions. Ticks is a per-instruction callback in Zend that allows us to implement cooperative multitasking within PHP. Example: In extension code: php_add_tick_function(my_tick_func); void my_tick_func(int count) { php_printf("[tick %d]", count); } In PHP code: <?php declare(ticks = 1) { print "there should be two ticks here.\n"; } ?> | ||||
* | Cleaning up some mess | Sascha Schumann | 2000-08-21 | 1 | -1/+1 |
| | |||||
* | various version 2.0 and 2.01 licenses -> 2.02 | David Croft | 2000-07-24 | 1 | -4/+5 |
| | |||||
* | @- Implemented default_charset and default_mimetype config directives (Stig) | Stig Bakken | 2000-02-25 | 1 | -0/+77 |
Implemented default_charset and default_mimetype configuration directives. Started implementing ticks in PHP. |