$this->assign('name',$name)->assign('sex','man')->assign('today',$date);多少版本才可以这样子写
2014-12-23
为什么我写的是$this->display('Index/test');页面不显示,写的是$this->display('test');就显示呢?
2014-12-23
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(visit|im|min|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
我这样子写才可以隐藏
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(visit|im|min|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
我这样子写才可以隐藏
2014-12-23
手册上说可用between;
其中type属性的值可以用in/notin/between/notbetween,其它属性的用法和IN或者BETWEEN一致。
其中type属性的值可以用in/notin/between/notbetween,其它属性的用法和IN或者BETWEEN一致。
2014-12-23