⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 record.php

📁 通达OA2007SE源代码 非常好的
💻 PHP
字号:
<?
  include_once 'inc/auth.php';
  echo '
<html>
<head>
<title>网络会议发言内容</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
';
  echo '<s';
  echo 'cript>
function say_to(id,name)
{
  return;
}
</script>
</head>
<body bgcolor="#F1FAF5" topmargin="5">
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr>
    <td class="Big"><img src="/images/menu/netmeeting.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><b> 网络会议记录</b><br>
    </td>
    <td>';
  button_back ();
  echo '</td>
  </tr>
</table>
<hr width="95%" height="1" align="left">
';
  $CUR_TIME = date ('Y-m-d H:i:s', time ());
  $MSG_FILE = (('../meeting/msg/'.$MEET_ID).'.msg');
  if (!file_exists ($MSG_FILE))
  {
    $fp = fopen ($MSG_FILE, 'a+');
    fclose ($fp);
  }
  $LINES = file ($MSG_FILE);
  $LINES_COUNT = count ($LINES);
  $LINES_START = 0;
  for ($I = $LINES_START; ($I < $LINES_COUNT); ++$I)
  {
    $STR = substr ($LINES[$I], 0, (strlen ($LINES[$I]) - 2));
    $TO_STR = substr ($STR, 0, strpos ($STR, '@+#'));
    if (($TO_STR == ''))
    {
      $STR = str_replace ('parent.chat_input.', '', $STR);
      $OUT_PUT = (('<span>'.$STR).'</span><br>
');
      echo $OUT_PUT;
      continue;
    }
  }
  echo '
</body>
</html>';
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -