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

📄 record.php

📁 通达OA官方提供的30源代码,感觉很实在
💻 PHP
字号:
<?
include_once("inc/auth.php");
?>

<html>
<head>
<title>网络会议发言内容</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
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();?></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>\n";
      echo $OUT_PUT;
    }
}
?>


</body>
</html>

⌨️ 快捷键说明

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