1. ### **下载PHP7.3源码**
```
[root@local ~]# cd /home/
[root@local ~]# wget http://cn2.php.net/distributions/php-7.3.3.tar.gz
```
2. ### **解压**
```
[root@local ~]# tar -zxvf php-7.3.3.tar.gz
```
3. ### **编译安装**
```
[root@local ~]# cd php-7.3.3
[root@local ~]# ./configure --prefix=/www/server/php/73
[root@local ~]# make
[root@local ~]# make install
```
安装路径可通过--prefix=自定义
4. ### **设置环境变量**
修改/etc/profile文件使其永久性生效,并对所有系统用户生效,在文件末尾加上如下代码
```
PATH=$PATH:/www/server/php/73/bin export PATH
```
最后:执行 命令source /etc/profile或 执行点命令使其修改生效;
执行完可通过echo $PATH命令查看是否添加成功。
```
[root@local ~]# source /etc/profile
[root@local ~]# echo $PATH
```
5. ### **配置php.ini文件**
查看php.ini 配置地址,然后把php.ini-development复制到对应目录下并命名为php.ini
```
[root@local ~]# php -i |grep php.ini
[root@local ~]# cp php.ini-development /www/server/php/73/lib/php.ini
```
*****
### **注:安装依赖**
如果安装过程中失败,需要安装依赖 gcc、libxml2、autoconf
```
[root@local ~]# yum install gcc-c++
[root@local ~]# yum install libxml2-devel
[root@local ~]# yum install autoconf
```
- 序章
- 1.环境搭建
- PHP7源码编译安装
- Swoole源码编译安装
- Mysql5.7源码安装
- Redis安装
- 2.搭建Echo服务器
- 3.Server服务器
- 函数列表
- Server::__construct
- Server->set
- Server->on
- Server->start
- Server->send
- WebSocket
- Server->push
- Server->exist
- Server::pack
- Server::unpack
- Server->disconnect
- Server->isEstablished
- 配置选项
- reactor_num
- worker_num
- max_request
- max_conn
- daemonize
- backlog
- log_file
- log_level
- upload_tmp_dir
- http_parse_post
- document_root
- http_compression
- 事件回调函数
- onStart
- onWorkerStart
- onConnect
- onReceive
- onPacket
- onRequest
- 请求Request
- Http\Request->$header
- Http\Request->$server
- Http\Request->$get
- Http\Request->$post
- Http\Request->$cookie
- Http\Request->$files
- Http\Request->rawContent
- Http\Request->getData
- 响应Response
- Http\Response->header
- Http\Response->cookie
- Http\Response->status
- Http\Response->redirect
- Http\Response->write
- Http\Response->sendfile
- Http\Response->end
- Http\Response->detach
- Http\Response::create
- onClose
- onOpen
- onMessage
- 创建服务器
- TCP服务器
- UDP服务器
- HTTP服务器
- WebSocket服务器
- 4.定时器Timer
- 5.进程Process
- Process::__construct
- Process->start
- Process->name
- Process->exec
- Process->write
- Process->read
- Process->setTimeout
- Process->setBlocking
- Process->useQueue
- Process->statQueue
- Process->freeQueue
- Process->push
- Process->pop
- Process->close
- Process->exit
- Process::kill
- Process::wait
- Process::daemon
- Process::signal
- 6.内存Memory
- Table
- Table->__construct
- Table->column
- Table->create
- Table->set
- Table->incr
- Table->decr
- Table->get
- Table->exist
- Table->count
- Table->del
- Channel
- Channel->__construct
- Channel->push
- Channel->pop
- Channel->stats
- 7.协程Coroutine
- Coroutine
- Coroutine::list
- Coroutine::set
- Coroutine::stats
- Coroutine::create
- Coroutine::exist
- Coroutine::getCid
- Coroutine::getContext
- Coroutine::defer
- Coroutine::getBackTrace
- Coroutine::yield
- Coroutine::resume
- Coroutine::fread
- Coroutine::fgets
- Coroutine::fwrite
- Coroutine::sleep
- Coroutine::gethostbyname
- Coroutine::getaddrinfo
- Coroutine::exec
- Coroutine::readFile
- Coroutine::writeFile
- Coroutine::statvfs
- Coroutine::getPcid
- Coroutine\Channel
- Coroutine\Channel->__construct
- Coroutine\Channel->push
- Coroutine\Channel->pop
- Coroutine\Channel->stats
- Coroutine\Channel->close
- Coroutine\Channel->length
- Coroutine\Channel->isEmpty
- Coroutine\Channel->isFull
- Coroutine\Channel->$capacity
- Coroutine\Channel->$errCode
- Coroutine\Client
- Coroutine\Client->connect
- Coroutine\Client->send
- Coroutine\Client->recv
- Coroutine\Client->close
- Coroutine\Client->peek
- Coroutine\Client->set
- Coroutine\Http\Client
- Coroutine\Http\Client->get
- Coroutine\Http\Client->post
- 其他
- 并行和并发的区别
- 堆、栈、队列