Opet

  • com_event_sink
    ... t really make sense to run it in a web server context. Example 1. COM event sink example <?php class IEEventSinker {   var $terminated = false;   function ProgressChange($progress, $progressmax) {     echo "Download progress: $progress / $progressmax\n ... dom, $url) {     echo "Document $url complete\n";   }   function OnQuit() {     echo "Quit!\n";     $this->terminated = true;   } } $ie = new COM("InternetExplorer.Application"); // note that you don't need the & for PHP 5! $sink =& new ...
    http://www.netlikon.de/docs/php-manual/en/html/function.com-event-sink.html
  • com_event_sink
    ... t really make sense to run it in a web server context. Beispiel 1. COM event sink example <?php class IEEventSinker {   var $terminated = false ;   function ProgressChange ( $progress , $progressmax ) {     echo "Download progress: $progress / $progressmax \n " ;   }   function DocumentComplete ... & $dom , $url ) {     echo "Document $url complete \n " ;   }   function OnQuit () {     echo "Quit!\n" ;      $this -> terminated = true ;   } } $ie = new COM ( "InternetExplorer.Application" ); // note that you don't need the & for PHP 5! $sink =& new IEEventSinker (); com_event_sink ...
    http://paris.fh-friedberg.de/phpman/function.com-event-sink.html
Impressum