0

Model A记录访问的用法的正确方法是Model B什么?在这种情况下,我想记录Excel.

class Preview extends Eloquent {

    /**
     * Push file Data to Session
     *
     * @ ...
     */
    public static function push() {
        Session::put('data', Excel::get(self::file));
    }
}
4

1 回答 1

3

您可以使用@see 注释指向另一个类:

class Preview extends Eloquent {

    /**
     * Push file Data to Session
     *
     * @see Excel::get()
     * @see Session
     * @see http://php.net/manual/en/features.sessions.php
     */
    public static function push() {
        Session::put('data', Excel::get(self::file));
    }
}

在生成 html 文档时,它应该创建一个锚标记,该标记链接到 Excel 类的 get 方法的文档,即 Session 类。和 php.net 手册

于 2013-02-22T16:01:09.650 回答