3 Star 1 Fork 0

Gitee 极速下载 / php-connect-pool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/swoole/php-connect-pool
克隆/下载
stub-function.php 744 Bytes
一键复制 编辑 原始数据 按行查看 历史
yjqg6666 提交于 2017-01-17 16:17 . add stub functions&classes
<?php
/**
* 运行服务
*
* @param string $conf
* @return bool|null
*/
function pool_server_create($conf)
{
unset($conf);
return true;
}
/**
* 查看服务状态
*
* @param int $pid 服务进程id 可从pid文件获取
*/
function pool_server_status($pid)
{
}
/**
* 重新加载服务配置
*
* @param int $pid 服务进程id 可从pid文件获取
* @return bool|null
*/
function pool_server_reload($pid)
{
unset($pid);
return true;
}
/**
* 关闭服务
*
* @param int $pid 服务进程id 可从pid文件获取
* @return bool|null
*/
function pool_server_shutdown($pid)
{
unset($pid);
return true;
}
/**
* 获取版本号
* @return string
*/
function pool_server_version()
{
return "";
}
C/C++
1
https://gitee.com/mirrors/php-connect-pool.git
git@gitee.com:mirrors/php-connect-pool.git
mirrors
php-connect-pool
php-connect-pool
master

搜索帮助