回复讨论(解决方案) 不可以,但你可在文件里 include 多个文件
不可以,但你可在文件里 include 多个文件
php.ini 中; automatically add files before php document.
; http://php.net/auto-prepend-file 这个是什么意思啊 他那里写着files 是可以配置多个么? auto_prepend_file
string
specifies the name of a file that is automatically parsed before the main file. the file is included as if it was called with the require function, so include_path is used.
the special value none disables auto-prepending.
是一个文件啊。
auto_prepend_file
string
specifies the name of a file that is automatically parsed before the main file. the file is included as if it was called with the require function, so include_path is used.
the special value none disables auto-prepending.
是一个文件啊。
如果传到服务器的话那个相对路径怎么配置啊? 由 include_path 指定
建议使用绝对路径,但可以使用dirname(__file__)来获得。