recording_popup.php
来自「最近在做软交换时研究的一个软交换的东东」· PHP 代码 · 共 47 行
PHP
47 行
<?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 + =
减小字号Ctrl + -
显示快捷键?