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

📄 preview.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php // $Id: preview.php,v 1.4 2007/01/27 23:23:44 skodak Exp $ preview for insert image dialog    require("../../../../config.php");    $id = optional_param('id', SITEID, PARAM_INT);    $imageurl = required_param('imageurl', PARAM_RAW);    require_login($id);    require_capability('moodle/course:managefiles', get_context_instance(CONTEXT_COURSE, $id));    @header('Content-Type: text/html; charset=utf-8');    $imagetag = clean_text('<img src="'.htmlSpecialChars(stripslashes_safe($imageurl)).'" alt="" />');?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title><?php echo get_string('preview') ?></title><style type="text/css"> body { margin: 2px; }</style></head><body bgcolor="#ffffff"><?php echo $imagetag ?></body></html>

⌨️ 快捷键说明

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