听说这里很多大佬,能不能帮我看看什么问题,
https://xiaojunkang.com/yinyue/96.html以下是那串代码
<?php
$t = 1209600*8;
$a = Helper::options()->siteUrl . 'usr/uploads/avatar/' . md5(strtolower($comments->mail)) . '.jpg';
$e = __TYPECHO_ROOT_DIR__ . '/' . 'usr/uploads/avatar/' . md5(strtolower($comments->mail)) . '.jpg';
if ( !is_file($e) || (time() - filemtime($e)) > $t ){
$a = '
https://cdn.v2ex.com/gravatar/' . md5(strtolower($comments->mail)) . '?s=80&r=X&d=';
copy($a, $e);
if (!is_file($e)){
copy($d, $e);
};
};
if ( filesize($e) < 900 ) copy($d, $e);
?>