Mainly written for fun, but this is a configurable Logger written in PHP that supports multiple handlers, including Writers (File, SQL, Apache’s Error Log, Echo), configurable Formatting. various logging levels (FATAL, ERROR, WARN, INFO, DEBUG, TRACE). Also useful functions like isDebug/TraceEnabled(), to check before building large strings to debug/trace(). *While each logger instance can have [...]
Archive for the ‘PHP’ Category
PHP – Observer/Observable Design Pattern
Posted by kenny on November 20th, 2011
This is a PHP implementation of the Java Observer/Observable classes. Observable.php 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [...]
PHP – Binary Tree
Posted by kenny on November 20th, 2011
A simple binary tree in php, will add a delete function later 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 [...]

Posted in
Tags:

