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

📄 recording_popup.php

📁 最近在做软交换时研究的一个软交换的东东
💻 PHP
字号:
<?php/** * @file * popup window for playing recording */chdir("..");include_once("./includes/bootstrap.php");?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">  <head>    <TITLE>ARI</TITLE>    <link rel="stylesheet" href="popup.css" type="text/css">    <meta http-equiv="content-type" content="text/html; charset=UTF-8">  </head>  <body><?php  global $ARI_CRYPT_PASSWORD;  $crypt = new Crypt();  $path = $crypt->encrypt($_GET['recording'],$ARI_CRYPT_PASSWORD);  if (isset($path)) {    if (isset($_GET['date'])) {      echo($_GET['date'] . "<br>");    }    if (isset($_GET['time'])) {      echo($_GET['time'] . "<br>");    }    echo("<br>");    echo("<embed src='audio.php?recording=" . $path . "' width=300, height=20 autoplay=true loop=false></embed><br>");    echo("<a class='popup_download' href=/recordings/misc/audio.php?recording="  . $path . ">" . _("download") . "</a><br>");  }?>  </body></html>

⌨️ 快捷键说明

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