日常使用小点
# HTML时间戳转日期
{$datetime|date="Y-m-d H:i:s"###}
# 获取当前0时时间戳
$today = strtotime(date("Y-m-d")time());
# 一次性找到字段在哪张表
mysql select * from information_schema.columns where column_name = 'id';
# 获取文本内容中的图片和文件路径
# $content 富文本内容
# 正则表达式$pattern = "/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg]))[\'|\"].*?[\/]?>/";
# 文本中图片数量preg_match_all($pattern $content $match);
# 获取图片地址
dump($match[1]);
# 替换富文本内容中的图片路径
# $content 为富文本内容
# 当前域名
$url = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['SERVER_NAME'];
# 正则表达式
$pregRule = "/<[img|IMG].*?src=[\'|\"](.*?(?:[\.jpg|\.jpeg|\.png|\.gif|\.bmp]))[\'|\"].*?[\/]?>/";
# 富文本内容
$content = preg_replace($pregRule ''${1}" style="max-width:100%">' $content);
dump($content);
# PHP 清空指定数据表
$sql = 'truncate table 表名(带前缀)';
$db->exec($sql);
# TP5.0 清空指定数据表
db()->execute('truncate table 表名(带前缀)');
# 打印SQL语句
Db::table('order')->fetchSql(true)->insert($data);
# TP5直接获取单个字段值,getField():拆分为value和column了,例子:
where("id = 1")->value("title" );
# 输出:(string) title
where("id = 1")->column("title" );
# 输出:(array)
# 更新某个字段的值:
Db::table('think_user')->where('id'1)->setField('name' 'thinkphp');
# TP5.0 取得新增数据的自增主键,可以使用getLastInsID方法
Db::table('user')->insert($data);
$userId = Db::table('user')->getLastInsID();
# 或者直接使用insertGetId方法新增数据并返回主键值
Db::table('user')->insertGetId($data);
# PHP substr字符串截取法
$mobile = '18310000000';
$newMobile1 = substr($mobile 0 5).'****'.substr($mobile 9);
var_dump($newMobile1);
# PHP substr_replace替换字符串的子
$newMobile2 = substr_replace($mobile '****'3 4);
var_dump($newMobile2);
# PHP获取当前域名
$_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST']
# 获取域名ip地址
gethostbyname(域名)
发表评论