php

红萌网   http://www.redwww.com/

 PHP     http://www.tudou.com/programs/view/w44lZ5QLoJ0

百度     http://baike.baidu.com/view/4990177.htm

 2102年教程:http://www.tudou.com/programs/view/VNDDR1m7anI/?FR=LIAN
 php网址:http://www.php.net/

phpeclipse + coreamp_20101010 开发环境

(php-5.3.3+apache-2.2.16+mysql5.1.51

1。配置apache   coreamp_20101010\server\apache-2.2.16\conf\extra\httpd-vhosts.conf配置文件,更改

  DocumentRoot "E:/phpworkspace"配置项为你的eclipse的工作目录

2。配置eclipse的开发环境phpfile的模板(有四种phpfile模板)

php_第1张图片

 

在preferences属性中配置各个phpfile模板的显示格式。

php_第2张图片

 

可以通过配置模板时的导出模板codetemplates.xml,更改description的名字更改模板的名称。

php_第3张图片

 

可以配置PHPServer。。。。。。。。

3.环境变量$_ENV输出的信息

<?php
 echo "<table border=1><th>key</th><th>value</th>";
 foreach ($_ENV as $key => $value) {
  echo "<tr><td> $key </td><td> $value </td></tr>";
 }
 echo "</table>";

?>

在本地可能读不出来信息,这是我们要设置coreamp_20101010\server\php-5.3.3\php.ini中的配置信息

; This directive determines which super global arrays are registered when PHP
; starts up. If the register_globals directive is enabled, it also determines
; what order variables are populated into the global space. G,P,C,E & S are
; abbreviations for the following respective super globals: GET, POST, COOKIE,
; ENV and SERVER. There is a performance penalty paid for the registration of
; these arrays and because ENV is not as commonly used as the others, ENV is
; is not recommended on productions servers. You can still get access to
; the environment variables through getenv() should you need to.
; Default Value: "EGPCS"
; Development Value: "GPCS"
; Production Value: "GPCS";
; http://php.net/variables-order
variables_order = "EGPCS" 《——这里的值应该为EGPCS,其中E——》Environment即为本地变量,——》重启apache服务器——》OK。

4当使用get请求时设置php.ini文件中的register_globals变量为ON,这样可以通过表单参数变量得到表单的值

php_第4张图片

 

 

 

 

 

 

 

你可能感兴趣的:(PHP)