📄 block_icon.php
字号:
<?php
include_once( "inc/utility_all.php" );
$basedir = $_SERVER['DOCUMENT_ROOT']."attachment/index/";
$handle = opendir( $basedir );
$i = 0;
while ( $file = readdir( $handle ) )
{
if ( $file != "." && $file != ".." )
{
$filelisting[$i] = "/attachment/index/".$file;
if ( ispicoffile( $file ) )
{
echo " <img src=\"";
echo $filelisting[$i];
echo "\" border=\"0\" onclick=\"changeDragIcon('";
echo $filelisting[$i];
echo "','";
echo $file;
echo "')\" class=\"imglink\"></a>\r\n \r\n";
}
}
++$i;
}
echo "<s";
echo "pan style=\"color:#00f;text-decoration:underline;cursor:hand\" onclick=\"deleteDragIcon()\">取消图标</span>";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -