码迷,mamicode.com
首页 > 数据库 > 详细

PHP with MySQL essential training-10.5including and require files

时间:2014-11-10 09:53:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:io   sp   文件   on   cti   bs   sql   mysql   ui   

1# 主要讲了四个外接文件的函数,分别是include,include_once,require,require_once。

include and include_once :if there is something wrong,they will not throw an error, they will just be ingored.

requre and require_once :if there is something wrong ,thye will throw a fatal error, and blocking the page .

 

2#养成好的习惯,变量和函数用{}括起来。

<?php

  function hello($name) {

  return "hello {$name}!";

}

?>

 

PHP with MySQL essential training-10.5including and require files

标签:io   sp   文件   on   cti   bs   sql   mysql   ui   

原文地址:http://www.cnblogs.com/huaziking/p/4086375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!