
PHP
Jason-张百万 fastnas作者
毕业于黑龙江农业工程职业学院计算机网络与信息工程02级。
05年毕业论文 流媒体视频点播网站搭建与运营
05年1月~5月 宾州在线
06年搜狐房地产频道-互动广告设计与视频剪辑
房地产项目网站设计
07年哈尔滨新侨外国语学院 教授 计算机原理与网页设计
09年中国教育联盟 PHP程序员
10年蚂蚁天下网
11年哈尔滨普莱斯
12年哈尔滨地板网
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
重装Nginx
$ sudo apt-get --purge remove nginx$ sudo apt-get autoremove$ dpkg --get-selections | grep nginx罗列出与nginx相关的软件nginx-common然后卸载并重新安装$ sudo apt-get --purge remove nginx-common$ sudo apt-get install nginx原创 2021-03-10 01:39:53 · 189 阅读 · 0 评论 -
debian安装php-curl
apt-get install php7.0-curl原创 2019-06-22 16:49:45 · 1237 阅读 · 0 评论 -
解决thinkphp模板页判断变量为空的方法
<!-- 方法一 --><if condition=" $friend_one['avatar'] neq '' "> <img width="160px" height="160px" alt="avatar" src="/thinkapp__PUBLIC__/Uploads/{$friend_one['avatar']}"> &l...原创 2020-02-25 23:46:53 · 3263 阅读 · 0 评论 -
Openmediavault 4.1.3 镜像下载地址
Openmediavault 4.1.3 镜像下载地址原创 2020-04-26 23:16:46 · 6509 阅读 · 0 评论 -
宝塔出现 Please report this message and include the following information to us.
Please report this message and include the following information to us.把防火墙壁关一下试试 ^^原创 2020-04-20 03:47:31 · 5811 阅读 · 0 评论 -
js ul li 隐藏多余li
<ul><li>fastnas</li><li>IOT</li><li>农业物联网</li><li>工业物联网</li></ul><script>window.onload=function(){ var lis=document.getElem...原创 2020-04-09 11:26:07 · 1076 阅读 · 0 评论 -
采买宝开发中Nginx加入 Json Gzip
采买宝开发中Nginx加入 Json Gzip #采买宝开发中Nginx加入 Json Gzipserver { listen 80;#开启gzip application/json json 类型gzip on;gzip_min_length 1k;gzip_buffers 4 16k;gzip_http_version 1.0;gzip...原创 2020-01-19 03:24:41 · 267 阅读 · 0 评论 -
PHP截取字符串 PHP截取字符串第一个汉字后面加两个星
截取 第一个汉字后面加两个星 $rest = mb_substr($v['name'], 0, 1, 'utf-8'); //截取 第一个汉字echo $rest.'**'; //输出第一个汉字 后面加两个星 在实际项目应用中,经常遇到使用php获取字符串前几位用来比较、赋值等等。今天给大家分享使用php substr...原创 2019-10-02 19:09:09 · 3761 阅读 · 0 评论