2024年10月29日
老版GetList函数:
参数较少,附加选项较弱。
新版GetList函数:
参数更多,支持指定分类、作者、日期、Tag、搜索词等。
支持自定义where和order。
2024年10月29日
上周时间戳:
$beginLastweek = mktime(0, 0, 0, date('m'), date('d') - date('w') + 1 - 7, date('Y'));
$endLastweek = mktime(23, 59, 59, date('m'), date('d') - date('w') + 7 - 7, date('Y'));
本周时间戳:
$beginThisweek = mktime(
2024年10月29日
问题:
在DedeCMS图片集上传图片时弹出提示“302”。
解决方法:
修改 userlogin.class.php 文件:
打开 include/userlogin.class.php 文件。
在文件的第二行 session_start(); 前添加以下代码:
if (isset($_POST['PHPSESSID'])) {
session_id($_POST['PHPSESSID'
2024年10月29日
{php}
$order = array('rand()' => '');
$where = array(array('=', 'log_Status', '0'));
$array = $zbp->GetArticleList(array('*'), $where, $order, array(10), '');
{/php}
{foreach $array as $related}
<li><a href="{$related.Url}">{$rel
2024年10月29日
控制友链长度
在调用友链的标签中使用titlelen属性,例如:
{dede:flink titlelen='20' /}
控制链接类型
使用type属性,例如:
{dede:flink type='image' /} <!-- 图片链接 -->
{dede:flink type='text' /} <!-- 文字链接 -->