#MA

ubuntu 安装 swoole 和mac 安装swoole 扩展

ubuntuphp安装swoole比较容易1.从git下载源码2.下载pcre http://sourceforge.net/projects/pcre/files/pcre/8.36/ ./configure make&makeinstall3.进入swoole源码phpize&...

mac composer 安装

使用curl指令下载:curl-sShttps://getcomposer.org/installer|php或者curl-sS-khttps://getcomposer.org/installer|php或是沒有安裝curl,也可以用php指令下载:php-r"readfile('https://getcompose...
ymnets ymnets·2020-03-25

mac nginx 安装教程

eekingasatisfactorysolutiontocreatealocalwebserverforprogramminginmacOSwithPHPandMySQL,IwasdisappointedthattheturnkeysolutionswerefarfromequalingtheWAMPthatmaye...

mac brew 安装 nginx fpm mysql 教程

一.安装brew要求:OSX10.6以上系统,并且安装有XCode命令行工具对于10.11的系统需要设置下local的权限为当前用户$sudochown-R$(whoami):admin/usr/localbrew安装程序的过程中需要用到苹果的xcode中的编译器,你可以到苹果的官网中免费下载安装(需要注册免费的开发者...

mac nginx 一些资料

http://www.jianshu.com/p/918eb337a206mac的nginx配置目录在/usr/local/etc/nginx 安装之前最好执行brew的update和upgradebrewupdatebrewupgrade安装nginxbrewinstallnginxnginx安装后,启动n...

workerman相关

(1)workermanlinxu内核优化 http://doc.workerman.net/315302(2)workerman安装环境配置  http://doc.workerman.net/315115 (3)workenman安装http://doc.workerman....
ymnets ymnets·2020-03-25

python3之模块SMTP协议客户端与email邮件MIME对象

 1、smtplib模块的常用类与方法smtplib模块实现邮件的发送功能,模拟一个stmp客户端,通过与smtp服务器交互来实现邮件发送的功能,可以理解成Foxmail的发邮件功能,在使用之前我们需要准备smtp服务器主机地址、邮箱账号以及密码信息。在python2.3以后python自带smtplib模块...

连接池中的maxIdle,MaxActive,maxWait等参数详解

<beanid="aaa"class="org.apache.commons.dbcp.BasicDataSource"destroy-method="close"><propertyname="driverClassName"value="oracle.jdbc.driver.OracleDrive...

JAVA字符串格式化-String.format()的使用

String类的format()方法用于创建格式化的字符串以及连接多个字符串对象。熟悉C语言的同学应该记得C语言的sprintf()方法,两者有类似之处。format()方法有两种重载形式。format(Stringformat,Object...args)新字符串使用本地语言环境,制定字符串格式和参数生成格式化的新字...

微信小程序image图片自适应宽度比例显示的方法

我们都知道微信小程序的组件image是用来显示图片的,它有一下几个属性:1、src       图片资源地址2、mode     图片裁剪、缩放的模式3、binderror  当错...

matlab在一个figure中显示多幅图像

以显示2行3列为例:subplot(2,3,1);imshow(“1.jpg”);title('firstimg','fontname','TimesNewRoman','Color','k','FontSize',12);holdon; subplot(2,3,2);imshow(“2.jpg”);title('se...

spring boot出现maxActive can’t not set zero原因分析

1.使用eclipse的情况下可能出现src/main/resources未添加到sourcefolder的问题2.mysql包使用了runtime选项...

matlab:利用hold on 在一个figure上显示多张图

panoImage=imread('./bu.jpg');figure()imshow(panoImage);[x,y]=ginput();holdonplot(x,y,'r*') ...

MAC上VIRTUALBOX的安装和使用

  去oracle官网下载mac版的virtualBox。官网下载地址:https://www.virtualbox.org/。      下载好后按照向导进行安装即可。 1.新建虚拟机    打开virtualbox,界面如下:      选择左上角的“新建”按钮...
开发笔记 开发笔记·2020-03-08

微信小程序image组件的bindload方法

今天无意中看到小程序小程序image组件的bindload方法有下面的用法.wxml<view><imagewx:for="{{images}}"wx:key="id"id="{{item.id}}"src="{{item.pic}...
首页上一页...527528529530531下一页尾页