Loading...
新建一个扩展名为.bat的批处理文件,写入如下代码:@echo off net use H: \\192.168.199.199\shareFile "password" /user:"ftpname" 其中shareFile为要映射的文件夹名称,password是密码,ftpname是用户名 设置开机自动运行批处理文件: win+R跳出运行对话框;然后输...
打开var/Typecho/Common.php,找到下面的代码,大概在939行。$url = $isSecure ? 'https://secure.gravatar.com' : 'http://www.gravatar.com'; 替换为:$url = $isSecure ? 'https://gravatar.loli.net' : 'https://sdn.geekzu.org'; 一些可用的...
在functions.php中加入以下代码/** * 加载时间 * @return bool */ function timer_start() { global $timestart; $mtime = explode( ' ', microtime() ); $timestart = $mtime[1] + $...
在functions.php中加入如下代码/** * 阅读次数统计 * */ function get_post_view($archive) { $cid = $archive->cid; $db = Typecho_Db::get(); $prefix = $db->getPrefix(); if (!array_key_exists('view...
在functions.php中加入如下代码:/** * 文章字数统计 * */ function art_count ($cid){ $db=Typecho_Db::get (); $rs=$db->fetchRow ($db->select ('table.contents.text')->from ('table.contents')->where ('tabl...