処理の進行状況を表示する。

  1. <?php
  2. require_once ('../code/CTI/DriverManager.php');
  3.  
  4. //セッションの開始
  5. $session cti_get_session('ctip://localhost:8099/',
  6.     array('user' => 'user',
  7.     'password' => 'kappa'));
  8.     
  9. //出力しない
  10. $session->set_results(new SingleResult(new NullBuilder()));
  11.  
  12. function progress($length$read{
  13.   echo "$read / $length\n";
  14. }
  15. $session->set_progress_func('progress');
  16.  
  17. //リソースのアクセス許可
  18. $session->property('input.include''http://www.w3.org/**');
  19.     
  20. //文書の送信
  21. $session->transcode('http://www.w3.org/TR/xslt');
  22.  
  23. //セッションの終了
  24. $session->close();
  25. ?>

Documentation generated on Wed, 24 Apr 2013 10:09:08 +0900 by phpDocumentor 1.4.3