download.php
来自「GForge 3.0 协作开发平台 支持CVS, mailing lists, 」· PHP 代码 · 共 33 行
PHP
33 行
<?php/** * * SourceForge Code Snippets Repository * * SourceForge: Breaking Down the Barriers to Open Source Development * Copyright 1999-2001 (c) VA Linux Systems * http://sourceforge.net * * @version $Id: download.php,v 1.17 2001/05/22 16:12:12 pfalcon Exp $ * */$no_gz_buffer=true;require_once('squal_pre.php');$sql="SELECT * FROM snippet_version WHERE snippet_version_id='$id'";$result=db_query($sql);if ($result && db_numrows($result) > 0) { header('Content-Type: text/plain'); if (strlen(db_result($result,0,'code')) > 1) { echo util_unconvert_htmlspecialchars( db_result($result,0,'code') ); } else { echo 'nothing in here'; }} else { echo 'Error';}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?