Category Archives: php

php code an some solution of my job!

Apache2.2.x + php5.x + mysql Install and configuration on windows

Posted by Jerry in Articale, php | Leave a comment

Apache2.2.x + php5.x + mysql Install and configuration on windows Continue reading

PHP获取当前相对于域名的目录,PHP获取当前目录

Posted by Jerry in Knowledge, php | Tagged | Leave a comment

以前没咱滴研究,最近想给VgotFaster框架的生成站内链接函数增加生成相地址的功能(以前在使用PATH_INFO模式时只能是绝对地址,使用相地址时就省去了配置网站根目录的麻烦),随便看了一下$_SERVER超全局变量,发现其实很简单就可以得到的。

http://127.0.0.1/dev/classd/index.php/download
比如这个地址,我想得到红色区域的地址用于生成站内的链接,名为baseurl。
只需要用 $_SERVER['SCRIPT_NAME'] 就可以了, $_SERVER['SCRIPT_NAME'] 是当前正在访问的PHP文件的相对路径,只要如下稍作处理 Continue reading