1. 认识 Phalcon Phalcon是一个C拓展方式的PHP框架,安装拓展成功即可使用,性能很高。 Phalcon是一个高度解耦的框架。就像给了你一堆积木,你是拼成变形金刚呢还是芭比娃娃呢,随意打造。但是也提高了门槛,小白面对空文件夹不知道如何上手,因此官方有了phalcon-devtools工具帮你快速搭建框架;也有了包含了许多注册好的服务默认的工厂类FactoryDefault。 这是一...
1. 题目 1.1 英文 Determine whether an integer is a palindrome. Do this without extra space. Some hints : Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to s...
1. 介绍 本文主要介绍一下用Nginx代理来转发https和wss请求。 2.使用场景 什么情况下需要这种操作? 比如,后台多台服务器做反向代理; 比如,微信小程序,建立微信小程序的websocket连接,必须要使用wss,但是目前不支持自定义端口,在调用的时候会使用默认端口,这个时候就需要做个代理。 3. 实现 Nginx配置如下: server { listen 443; #https和ws...
1. 题目 Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Output: 321 Example 2: Input: -123 Output: -321 Example 3: Input: 120 Output: 21 Note: Assume we are dealing wi...
Go语言中,有一些内置的类型和函数,不需要导入任何东西就可以使用,包括一些内置函数,初学Go,这些函数花几分钟记一记。 官方参考资料: Package builtin 1. 内置类型 Constants Variables type ComplexType type FloatType type IntegerType type Type type Type1 type bool type byt...
准备定期刷一刷LeetCode上的题目,并且做一做笔记,这是第一篇。算法实现将采用Go语言。 1. 题目 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have...
1. 目的 有时候,我们需要数据在不同的服务之间进行流通,跨服务通讯;这个时候我们就需要将数据进行服务间的转发。 2. 应用场景 可能的应用场景有: APP通过HTTP请求发送消息给服务器,服务器通过websocket推送给web客户端 Web客户端在web端进行操作(HTTP或websocket),操作数据通过TCP由服务器推送到移动端 …… 在做物联网相关的项目,可能会用得比较多。 3. 实现...
1. 简介 封装了一个分页类,方便以后取用。 只是一个简单的封装,可以在这个基础上进行改造,优化代码啊,增加配置啊什么的。 效果大概是这样: 往下点会变成: 2. 代码 /** * 自定义分页类 * @param $totalNum int 总数量 * @param $current int 当前页面 * @param $limit int 一页多少个 * @param $baseUrl stri...
本文将记录我在Phalcon开发过程中遇到的问题,以及如何如何解决。 1. 正确地在控制器中获取参数 一般情况下,GET/POST请求获取参数: $this->request->get(参数名); $this->request->getPost("参数名") 路由模式下route获取参数要用dispatcher->getParam(); route...