摘要:
sns的fly(帖子)社区模块的开发过程中,有一个根据帖子的分类查找帖子的功能 数据库中的表是这样的: A表是Forum帖子表 字段有cid(分类Id),status B表是帖子的category表,字段有id,status, 后端根据分类查找帖子是这么写的 然而会报这样的错误 ambiguous的 阅读全文
摘要:
<?php date_default_timezone_set('PRC'); //默认时区 echo "今天:",date("Y-m-d",time()),"<br>"; echo "今天:",date("Y-m-d",strtotime("18 june 2008")),"<br>"; echo 阅读全文
摘要:
https://blog.csdn.net/xinyflove/article/details/89486213 阅读全文
摘要:
{php}/* 注释内容 */{/php} 阅读全文
摘要:
<div class="row" id="query"> <div class="col-md-3"></div> <div class="col-md-6"> <div class="query" style="margin-top: 5em;" > <div class="col-md-3" i 阅读全文
摘要:
一般模糊查询语句如下: SELECT 字段 FROM 表 WHERE 某字段 Like 条件 其中关于条件,SQL提供了四种匹配模式: 1,% :表示任意0个或多个字符。可匹配任意类型和长度的字符,有些情况下若是中文,请使用两个百分号(%%)表示。 比如 SELECT * FROM [user] W 阅读全文
摘要:
<div class="ibox float-e-margins"> <div class="ibox-title"> <h5>标题</h5> <div class="ibox-tools"> <a class="collapse-link"> <i class="fa fa-chevron-up" 阅读全文
摘要:
<!-- 导航头 --> <div class="col-md-6" style="padding: 0px"> <ul id="bus" class="nav nav-tabs"> <li class="active"> <a href="#query-line" data-toggle="tab 阅读全文
摘要:
当reture放在foreach循环外面,也就是现在的位置的时候,会报错。如下图。但当return放在foreach语句里面的时候就不会报错,但因为return会结束语句,这也就导致了foreach只执行了一次循环 解决方法 error_reporting(E_ERROR | E_WARNING | 阅读全文