Home > Backend Development > PHP Tutorial > PHP开发笔记

PHP开发笔记

WBOY
Release: 2016-06-23 13:27:57
Original
1082 people have browsed it

CI加载并调用类库时不能使用任何大写字母。
以下代码会报找不到xxxY属性:

$this->load->library('xxxY');$this->xxxY->methodXXX($aa,$bb);
Copy after login

这样写没问题

$this->load->library('xxxy');$this->xxxy->methodXXX($aa,$bb);
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template