书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 176 个相关结果.
  • 基于宝塔面板安装部署

    基于宝塔面板安装部署 安装前必看重要提示: 安装宝塔面板 安装环境 安装项目 这里修改的域名一定要写成后端api接口的域名,不要写错了。 比如, http://api.mochat.com 或 http://backend.test 这里修改的域名一定要写成后端api接口的域名,不要写错了。 比如, http://api.mochat....
  • 模板引用

    本教材限于PHP7以上的环境使用 模板操作部分 1、加载模板文件 Poscms \Service :: V ()-> display ( 'test.html' ); 2、传递模板变量 Poscms \Service :: V ()-> assign ( 'files' , 'test.html' ); 文档最后更新时间...
  • 5.1.11. 参考链接

    5.1.11. 参考链接 5.1.11.1. Bypass 5.1.11.2. Tricks 5.1.11.3. WebShell 5.1.11.4. Phar 5.1.11.5. 运行 5.1.11. 参考链接 5.1.11.1. Bypass php open basedir bypass open basedir bypass...
  • 更新日志

    Changelog 4.1.0 Added Changed 4.0.4 Added 4.0.0 Changed Changelog Changelog 4.1.0 Added postJson() : 发送POST Json请求 multiGet() : 并发GET请求 multiPost() : 并发P...
  • 安装(Installation)

    安装(Installation) Windows 相关指南(Related Guides) Linux/Solaris Debian / Ubuntu RPM分发(RPM distributions) (比如 CentOS) 从源码编译(Compile from source) Mac OS X 要求 FreeBSD 确认安装(Checki...
  • 生成器委托

    生成器委托 生成器委托 PHP7中支持delegating generator ,可以自动展开subgenerator ; A “subgenerator” is a Generator used in the portion of the yield from syntax. 我们需要在PHP5支持子生成器,将子生成器最后yield...
  • Installation

    Requirements Hardware Software You should always try and use the latest version of Phalcon and PHP as both address bugs, security enhancements as well as performance. PHP 5.5 will...
  • 通信协议

    通信协议 MQTT Yar服务器 其他 通信协议 MQTT swoole_mqtt_php 基于swoole实现的mqtt协议消息通信服务器 Yar服务器 https://github.com/stcer/syar 基于swoole实现的yar服务, php7 + swoole的性能超强。 其他 FastCGI协议 基于s...
  • 生成器返回值

    生成器返回值 生成器返回值 PHP7支持通过Generator::getReturn 获取生成器方法return的返回值。 PHP5中我们约定使用Generator最后一次yield值作为返回值。 <? php final class AsyncTask { public function begin...
  • 变量(Variables)

    变量(Variables) 创建(Creation) 变量的复制 变量的分离 变量(Variables) 创建(Creation) 与 PHP 不同,C 中的每个变量必须在我们函数的开头声明,在使用前必须初始化。甚至,当我们改变它的时候,它应该再次被重新初始化,例如: // Declare the variable and initial...