- 昵称:51助手
- 博龄:6年5个月25天
- 粉丝:122
- 关注:108
- +关注
搜索
文章分类
博客档案
字体文件格式
摘要:.TTF或.OTF,适用于Firefox 3.5、Safari、Opera.EOT,适用于Internet Explorer 4.0+.SVG,适用于Chrome、IPhone
php 获取pdf、 docx\doc 、pptx\ppt等文档页码
摘要:在百度搜了N遍之后,有很多方法但没法解决php 使com组件好像可以,但这个我linux服务器,安装不了,可能是我没找到方法我的最后解决安装 Imagick 看这这个 https://www.51zuso.com/admin/p/1187.html 发现只有pdf可以获取页码
php 获取月份的所有日期
摘要://$year 年 //$month 月 public function monthDate($year,$month){ $monthDate = array(); $mtime = strtotime($year.
微信小程序组件没有onLoad方法
摘要:lifetimes代替// 在组件实例进入页面节点树时执行lifetimes: { attached: function () { // 在组件实例进入页面节点树时执行 &
Thu Sep 01 2022 00:00:00 GMT+0800 (中国标准时间) 获取年月日
摘要:var date = new Date(monthStartDate) date_value = date.getFullYear() + '-' + (date.getMonth() + 1) + 
post 提交json数据 去除addslashes的反斜杠
摘要:使用stripslashes函数 去除反斜杠$jsonData = json_decode(stripslashes($param['data']),true);
Do not use built-in or reserved HTML elements as component id: address
摘要:把组件名 address 改成Address 就可以了export default { name: 'Address',}
vue router-link路由 class、传参
摘要: demo 1跳转到路由地址为 /show 页面,参数id为1<router-link :to="{path:'/show',query:{'id':1}}"> </router-link>demo2跳转到路由地址为 /
vue3 分离html、js、css文件
摘要:示例\src\views\checkOrder\checkOrder.vue分离出css与js文件到 \src\assets 文件夹中<template> htm </template> <script> import checkOrder from '../../as
PHP取整,四舍五入取整、向上取整、向下取整、小数截取
摘要:php取整数函数常用的四种方法:1.直接取整,舍弃小数,保留整数:intval();2.四舍五入取整:round();3.向上取整,有小数就加1:ceil();4.向下取整:floor()。一、intval—对变数转成整数型态intval如果是字符型的会自动转换为0。intval(3.14159); //&n