[php]
php 301 转向/跳转/重定向 最佳解决方案

?php $the_host = $_SERVER[HTTP_HOST];//取得当前域名 $the_url = isset($_SERVER[REQUEST_URI]) ? $_SERVER[REQUEST_URI] : ;//判断地址后面部分 $the_url = strtolower($the_url);//将英文字母转成小写 if($the_url==/index.php)//判...

查看更多
[php]
CodeIgniter报错:Unable to locate the model you have specified:

windows不区分大小写; linux严格区分大小写; 查看自己model层文件是否跟controller层文件中命名大小写有冲突 Unable to locate the model you have specified:demand_model Unable to locate the model you have specifie...

查看更多
[php]
php codeigniter 框架,如何去掉index.php 有效方法

ci框架初始路由需要有一个index.php http://www.****.com/index.php/email/send163 http://www.****.com/email/send163 我想把index.php去掉,但是网上找到的方法设置 很多行不通 . 经过摸索总结如下: 1.首先找到a...

查看更多
[php]
No input file specified. 问题解决!伪静态规则修改以后遗留问题

IfModule mod_rewrite.c RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] #若你的项目名为:TestCI 则此处应为RewriteRule ^(.*)$ /TestCI/index.php/$1 [L]...

查看更多
[php]
解决方案:Warning: date(): It is not safe to rely on the system’s

错误代码: Warning: date(): It is not safe to rely on the systems timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still...

查看更多
[php]
PHP常用正则表达式汇总

1.平时做网站经常要用正则表达式,下面是一些讲解和例子,仅供大家参考和修改使用: 2.^\d+$ //非负整数(正整数 + 0) 3.^[0-9]*[1-9][0-9]*$ //正整数 4.^((-\d+)|(0+))$ //非正整数(负整数 +...

查看更多
[php]
php正则表达式以及正则函数详解

正则表达式是 php 中一个非常重要的知识点,通常用来查找和替换字符串,最常用的就是验证用户输入的信息格式是否正确,如邮件格式、电话格式等等。还有比如采集器之类的软件中...

查看更多
[php]
书单列表

# PHP 《PHP程序设计》(第2版) --PHP语法和入门最好的书 《PHP5权威编程》 --PHP入门后升级书 《深入PHP:面向对象、模式与实践》(第3版) --理解PHP中的面向对象和设计模式 《高性能PHP应用开...

查看更多
[php]
7款本地搭建PHP环境工具推荐

7款本地搭建PHP环境工具推荐 通常在开发PHP程序时,需要用到服务器环境来调试自己的页面。有时候仅仅是为了学习PHP程序开发,如果是出于这样的理由去购买一个空间或者服务器是完...

查看更多
  • 19条记录