error.php
上传用户:snow1005
上传日期:2015-11-10
资源大小:3151k
文件大小:1k
源码类别:

Ajax

开发平台:

JavaScript

  1. <?php
  2. /*
  3.  * qWikiOffice Desktop 1.0
  4.  * Copyright(c) 2007-2008, Integrated Technologies, Inc.
  5.  * licensing@qwikioffice.com
  6.  * 
  7.  * http://www.qwikioffice.com/license
  8.  */
  9. class error {
  10. private $os;
  11. public function __construct($os){
  12. $this->os = $os;
  13. }
  14. /** log() Records an error log to the the qo_error_log table
  15.   * 
  16.   * @param {array} $errors An array of error messages
  17.   **/
  18. public function log($errors){
  19.     for($i = 0, $len = count($errors); $i < $len; $i++){
  20. $sql = "INSERT INTO qo_error_log (text, timestamp) VALUES ('".$errors[$i]."', '".date("Y-m-d H:i:s")."')";
  21. mysql_query($sql);
  22. }
  23. }
  24. }
  25. ?>