获取某篇文章信息 `GetOneArchive($id)`
~~~
[typeid] => 6
[click] => 219
[title] => KBS 2TV电视剧[适合]
[writer] => 管理员
[litpic] => public/images/222.jpg
[pubdate] => 1530861461
[arcurl] => /html/gszx/1.html 静态地址
~~~
ip `GetIP()`
字符截取 `cn_substr($str, $slen, $startdd=0) `字符截取
格式化时间` MyDate('Y-m-d H:i:s',@me)`
转换时间戳 GetMkTime(@me)
友好时间 FloorTime(@me)
{field:description function='Html2Text(@me)'/}
{field:body function=Text2Html(@me)'/}
GetEditor('content','默认值') 编辑器
显示信息 跳转地址
ShowMsg($msg, $gourl)
GetTopTypename($typeid) 顶级栏目名
GetChannelArcpic($typeid)顶级栏目图片
自定义函数
~~~
if (!function_exists('dump')) {
function dump($arr){
echo '<pre>'.print_r($arr,TRUE).'</pre>';
}
}
//读取文章内容,传入id,
function get_body($id,$len=0){
global $db;
$rs = $db->get('addonarticle',array('aid'=>$id),array('body')) ;
if($len==0) {
$rs = empty($rs['body']) ?"": html2text(trim($rs['body']) );
} else{
$rs = empty($rs['body']) ?"":cn_substr( html2text(trim($rs['body'] )),$len);
}
return $rs;
}
//字符截取
if ( !function_exists('cutstr'))
{
function cutstr($str, $slen, $sq="...",$startdd=0) {
$sq = strlen($str)>$slen ? "..." : "";
$text = cn_substr_utf8($str,$slen,$startdd).$sq;
return $text;
}
}
//是否有子栏目
function is_subnav($typeid,$echo1='',$echo2=''){
global $dsql;
$sql = "SELECT id From `#@__arctype` WHERE reid=$typeid And ishidden<>1 order by sortrank asc limit 0, 10";
$row = $dsql->GetOne($sql);
return is_array($row)?$echo1:$echo2;
}
/**
* 分页时候计算记录总条数
* @param $table 表名称,不要带前缀
* @param string $where 查询条件 需要带 where
* $psize 每页显示数据
* {dede:field.typeid function="page_count('zhaopin','where typeid=16 ')"/}
*/
function page_count($table,$where=' ',$psize=6){
global $db;
$where = (empty($where))? " 1=1":" typeid=$where";
$row =$db->fetchcolumn("select count(*) from ".$db->tablename($table)." where $where");
$maxpage = ceil($row/$psize);
return $maxpage;
}
/**
* @param $aid 图片集id
* num 显示数量
* @return string
*/
function get_imgs($aid,$num = 0){
global $dsql;
$imgurls = '';
$row = $dsql->GetOne("Select imgurls,typeid From #@__addonimages where aid=$aid order by aid desc");
$imgurls = $row['imgurls'];
preg_match_all("/{dede:img (.*)}(.*){\/dede:img/isU", $imgurls, $wordcount);
preg_match_all("/text='(.*?)' width=/is", $imgurls, $wordcount1);//$wordcount1[1][$i] 图片描述
$typename = get_chanel_name($row['typeid']);
$typelink = get_chanel_link($row['typeid']);
$title= $dsql->GetOne("Select title From #@__archives where id=$aid");
$count = count($wordcount[2]);
$num = ($num==0 || $num>$count)?$count:$num;
$imglist='';
for($i = 0;$i < $num;$i++){
$imglist.=" <li class='is-visible'>
<div class='cd-half-block image' style='background-image:url(".$wordcount[2][$i].")'></div>
<div class='cd-half-block content'>
<div>
<h2><a href='".$typelink."'>".$typename."</a></h2>
<p>产品名称:
".$title['title']."
</p>
</div>
</div>
</li>";
}
return $imglist;
}
/**
* 返回顶级栏目图片,用于列表页,任何时候都只返回顶栏目级图片
* @param $typeid
* @param string $default_pic
* @return string
*/
function get_topchannel_pic($typeid,$default_pic="/images/defaultpic.gif")
{
global $dsql;
$row = $dsql->GetOne("SELECT topid,arcpic FROM #@__arctype WHERE id= $typeid");
if(0 == $row['topid']){
return (empty($row['arcpic']))?$default_pic:$row['arcpic'];
}else{
$row1 = $dsql->GetOne("SELECT arcpic FROM #@__arctype WHERE id= $row[topid]");
return (empty($row1['arcpic']))?$default_pic:$row1['arcpic'];
}
}
/*
* 获取本栏目图片,只有找不到时候才返回顶级图片
* $typeid 栏目id
* $default_pic 找不到时候默认图片
* [field:id function='get_channel_pic(@me)'/]
* */
function get_channel_pic($typeid,$default_pic="/images/defaultpic.gif")
{
global $dsql;
$row = $dsql->GetOne("SELECT arcpic,topid FROM #@__arctype WHERE id= $typeid");
if(empty($row['arcpic'])){
if(0 == $row['topid']){
return $default_pic;
}else{
$row1 = $dsql->GetOne("SELECT arcpic FROM #@__arctype WHERE id= $row[topid]");
return (empty($row1['arcpic']))?$default_pic:$row1['arcpic'];
}
}else{
return $row['arcpic'];
}
}
/**
* 根据id获取栏目名称
* @param $typeid
* @return mixed
*/
function get_chanel_name($typeid)
{
global $dsql;
$row = $dsql->GetOne("SELECT typename FROM #@__arctype WHERE id= $typeid");
return $row['typename'];
}
/*
* 获取栏目连接,根据typeid
*/
function get_chanel_link($typeid){
global $dsql ;
$typename = $dsql->GetOne("SELECT typedir FROM #@__arctype where id=$typeid");
return str_replace("{cmspath}",'',$typename['typedir']);
}
/*栏目描述*/
function get_channel_desc($tid){
global $db;
return $db->getcolumn('arctype',array('id'=>$tid),'description');
}
~~~
无限极栏目调用
/*
* $channel 要调用的栏目id
{dede:tagname runphp='yes'}
@me =menu(2);
{/dede:tagname}
*/
function menu($channel=0,$line=100)
{ global $dsql,$result;
$line = empty($line)?10 : $line;
$dsql->SetQuery("SELECT * FROM #@__arctype WHERE reid='$channel' And ishidden<>1 order by sortrank asc limit 0, $line ");
$dsql->Execute($channel);
if($dsql->GetTotalRow($channel)>0)
{
$result .= "<ul class='top-nav'>";
while($row = $dsql->GetArray($channel))
{
$id = $row['id'];
$typename = $row['typename'];
$typelink = GetOneTypeUrlA($row);
$result .= "<li>";
$result .= "<a href='{$typelink}' >{$typename}</a>";
menu($id,$line);
$result .= "</li>";
}
$result .= "</ul>";
}
return $result;
}
- 简介
- 第一章 数据库
- Mysql/mariadb
- 函数
- 基础
- 增删改索引
- 标准查询
- 高级查询
- TIDB集群mysql解决方案
- Redis
- 语言基础
- 5种数据类型
- 其他类型
- Sqlite
- 语言基础
- 常用查询
- 第二章 PHP
- 语言基础
- 第一课 流程控制和运算
- 第二课 数组
- 第三课 日期时间
- 第四课 常用函数
- 第五课 字符串
- 第六课 文件操作
- 第七课 面向对象
- 第八课 正则表达式
- 第九课 图片处理生成
- 第十课 curl/memche
- 第十一课 mysql和pdo
- 第十三课 cookie和session
- 第十四课 xml操作
- 第十五课 php5.3+新特性
- 第十六课 php7+
- 第十七课 密码安全
- 废弃函数
- php命令行
- redis应用
- 算法
- 排序算法
- 基础算法
- 无限级分类
- 自定义函数Fn
- 查找算法
- 自定义函数数据函数fn
- laravel
- 路由
- 常用语句
- 数据库
- dingo/api
- Yii2
- 控制器
- 常用类
- 数据库
- redis
- thinkphp6
- TP6文档
- TP6插件
- dedecms
- 织梦标签大全
- 数据库操作
- 内置函数和定义函数
- 织梦核心改动
- 织梦插件/底层标签开发
- PHP相关工具
- composer
- php开发环境phpenv
- Phpstorm使用
- windows编译php扩展
- PHP开源库
- 开源项目管理禅道
- sns_auth
- php-casbin权限控制
- php-jwt
- 微信SDKeasywechat
- querylist采集库
- workerman
- Box/Spout处理excel和csv
- dll扩展
- redis/memche/xdebug
- redis
- Lua
- php_xlswriter
- event
- swoole
- 常用代码库
- 微擎框架
- 第一课全局变量
- 第二课常用函数
- 第三课自定义微擎独有函数
- 第四课数据库操作
- 第五课微信端回复
- 第六课微擎高级操作
- 第八课global函数列表
- mainfest.xml详解
- js方法
- 人人商城
- 第一课model解读
- 第二课常用语句解读
- 第三课常用js解读
- 第四课附录常见问题
- 第五课附录处理报表|支付
- 常用JSON状态码
- 第三章 JavaScript
- js基础
- 浏览器对象
- 语言基础
- html5接口
- ES6新语法
- vue
- 基础语法
- 京东vueUI组件
- uniapp
- 组件开发规范
- nodejs
- 基础知识
- 安装node
- nvm不同版本node切换
- js常用标准库
- zepto/jquery
- weui
- js图标库
- elementUI
- validator表单验证
- layer弹出层
- requirejs
- wow动画
- 动画animate
- swiper4
- 百度编辑器
- flyio/axios/qs
- jquery.form
- bootstrap3
- clipboard复制
- slideout侧滑
- imagehover.css图片悬停动画
- webpack打包
- Bulma UI框架
- store 客户端存储
- lottie动画创建库
- sweetalert
- js自定义函数
- 常见JSSDK
- 微信公众号JSSDK
- 腾讯地图jssdk
- 微信小程序
- 第四章 编程语言
- markdown语言
- Dart语言
- Dart语言基础
- Flutter框架
- Lua语言
- 字符串,数组,表
- 自定义方法
- go语言
- 第1.1语言基本语法
- 第1.2流程控制
- 第1.3函数
- 第1.4结构体
- 第1.5接口
- 第1.6包
- go语言框架Gin
- CSS3语言
- CSS与CSS3
- 选择符
- 属性
- css3
- loading动画
- HTML5语言
- less
- sass
- C#
- 基础知识
- 函数
- 第五章 开发工具
- git
- nginx/apache服务器
- Linux常用操作
- crontab定时任务
- 注册表与cmd
- 阿里云ECS
- frp穿透和ssl续期
- 宝塔安装
- 树莓派
- 浏览器模拟
- 火狐/chrome常用插件
- WSL安装使用
- mac brew和终端命令
- win10相关