因为我想将我的网站2.2.0改为3.0.6
提前致谢 :)
答案 0 :(得分:2)
其中一个主要变化是。第一个字母在文件名和类名上只能是大写。
例如
文件名: Example.php
git reset; git checkout .; git clean -fdx
模型
文件名: Model_example.php
<?php
class Example extends CI_Controller {
public function index() {
}
}
答案 1 :(得分:1)