logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Node.js fs 模块

一、同步和异步使用require('fs')载入fs模块,模块中所有方法都有同步和异步两种形式。异步方法中回调函数的第一个参数总是留给异常参数(exception),如果方法成功完成,那么这个参数为null或者undefined。异步方法实例代码(无需在虚拟机中编写):var fs = require('fs'); // 载入fs模块fs.unlink('/tmp/

PHP 7.1 Dockerfile

FROM php:7.1.9-fpm# Install any custom system requirements hereRUN apt-get update \&& apt-get install -y --no-install-recommends \curl \libicu-dev \libmemcached-dev \...

到底了