PHP源码安装经常会碰到的问题及解决办法
摘要:错误:configure: error: freetype-config not found. 解决:yum install freetype-devel 错误:configure: error: libevent >= 1.4.11 could not be found 解决:yum -y ins
阅读全文
linux 系统 网卡 ethX没有显示IP的处理方式
摘要:1 临时方式 ifconfig 设备名 IP 地址 (ifconfig eth0 192.168.1.117) 设置好之后马上生效,不需要重启网卡服务(千万别重启网卡服务,不然刚刚设置的又没有了)ifconfig即可查看当前网卡的IP地址。 2 永久方式(设置开启cnoot开启yes就可以) ser
阅读全文
php图片转base64
摘要:<?php$i=0;$handle = opendir('./'); //当前目录 while (false !== ($file = readdir($handle))) { //遍历该php文件所在目录 list($filesname,$kzm)=explode(".",$file);//获取扩
阅读全文
vue路由传参
摘要:console.log( _this.$route.params.id)接收参数 <div class="baoming"><router-link :to="{path:'/competition/'+ssl.id}">报名</router-link></div>跳转 {//路由配置 path:
阅读全文