1
gongpeione 2017-06-11 22:15:41 +08:00
http://php.net/manual/en/functions.arguments.php Type declarations
|
2
jellybool 2017-06-11 22:18:52 +08:00
我觉得 1 楼的并不是正路
关键字是:Type Hinting (php 类型约束 ) 个人推荐看这个 http://php.net/manual/en/language.oop5.typehinting.php 简单理解就是:$request 必须是 Request 的一个实例,$response 同理。 |
3
Jakesoft 2017-06-11 22:43:46 +08:00
这跟 slimphp 有什么关系
|
4
Jakesoft 2017-06-11 22:45:23 +08:00
这应该是 php 基础语法吧
|
5
imcj 2017-06-11 23:08:57 +08:00
@Jakesoft 申明类型,slim 使用了这个特性,这样你可以很容易的在 phpstorm 这样的 ide 里面跳转到 request 的定义。
|
6
Pastsong 2017-06-11 23:46:41 +08:00
@jellybool 你给的链接还是跳到 1 楼的了 [Facepalm]
给个中文的 http://php.net/manual/zh/functions.arguments.php#functions.arguments.type-declaration |
7
sanorchid OP 谢谢大家
|
8
miaotaizi 2017-06-12 12:58:33 +08:00
可以先看看这些个东西, 理解里面的一些术语
https://laravel-china.github.io/php-the-right-way/ |