12 lines
149 B
PHP
12 lines
149 B
PHP
|
<?php
|
||
|
function watch($topic, $fn, $property, $function)
|
||
|
{
|
||
|
global $monitored;
|
||
|
$monitored[] = new watch($topic, $fn, $property, $function);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
?>
|