PHP
firehand01
这个作者很懒,什么都没留下…
展开
-
关于tp5隐藏index.php的解决方法
Apache环境下,ThinkPHP5配置好以后,最初的访问方式可能是http://localhost/index.php/hello,其中hello是我们自己设置好的路由。 如果我们想把中间的index.php去掉,直接http://localhost//hello这样访问,可能会访问不了。那就需要配置一下。 一、首先我们要确保Apache启动加载重写模块 在apache的配置文件httpd.conf中,查找到mod_rewrite.so,看是否加载,如果没有,就把前面的#去掉就好。 ...原创 2020-06-14 20:03:25 · 554 阅读 · 0 评论 -
PHP 与 js 的交互
在PHP文件中,输出js脚本。 echo " "; echo "..............“; --此处可以传递变量给JS,也可以调用已有js的方法 echo "";原创 2014-02-28 09:50:27 · 592 阅读 · 0 评论 -
PHP Strict standards: Redefining already defined constructor for class问题
这个问题是PHP原创 2014-04-13 20:52:35 · 5100 阅读 · 0 评论 -
PHP Deprecated: preg_replace()问题
在PHP程序中,高低版本之间原创 2014-04-13 20:34:54 · 1408 阅读 · 0 评论