PHP自学笔记 ---李炎恢老师PHP第一季 TestGuest0.4

昨天写的两篇TestGuest0.2  0.3的笔记不知道为什么为删除了,很受伤~


TestGuest0.2

//转化硬路径常量

define('ROOT_PATH',substr(dirname(__FILE__),0,-8));


common.inc.php


global.inc.php

 ',microtime());
	return $_mtime[0]+$_mtime[1];

}	
 ?>


explode(delimiter, string),代码中意思是指,是microtime时间戳'  '空格处将时间戳分开分别存入 $_mtime[0]和$_mtime[1]。


疑问点:

require和include的区别。

参考脚本之家的解释


TestGuest0.4

知识点

1、οnclick="javascript:window.open('face.php','face','width=400,height=400,left=160,top=265')"

window.location是在当前窗口中打开新的页面(功能和a标签的href属性一致),window.open是重新开一个标签打开(功能和a标签的target="_blank"属性一致)。

你可能感兴趣的:(PHP自学笔记 ---李炎恢老师PHP第一季 TestGuest0.4)