37 Star 141 Fork 26

郭新华/php-cp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
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 "";
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/Gxhua/php-cp.git
git@gitee.com:Gxhua/php-cp.git
Gxhua
php-cp
php-cp
master

搜索帮助