易截截图软件、单文件、免安装、纯绿色、仅160KB

php 基础笔记 functions

/***************************by
garcon1986********************************/
<?php
//example1
$makefoo = true;
bar();
if($makefoo){
function foo(){
echo "doesn't exist.<br>";
}
}
if($makefoo)foo();
function bar(){
echo "exist<br>";
}
//example2
function sjg(){
function wl(){
echo 'must call sjg() before wl()!<br>';
}
}
sjg();
wl();
//wl();
//sjg();
//example3 - 递归
$a = 10;
function recursion($a){
if($a <= 20){
echo "$a\n";
recursion($a+1);
}
}
recursion($a);
echo "<br>";
//example4 - 向函数传递数组
$input1=array('hi','ni','hao','ya');
function record($input1){
echo $input1[0],$input1[1],$input1[2];
}
record($input1);
//pass the function's parameter by reference
function add_some_extra(&$string){
$string .= 'wl wo ai ni.';
}
$str1 = 'wo xiang shuo,';
add_some_extra($str1);
echo $str1.'<br>'; //output: wo xiang shuo, wl wo ai ni.
//default parameter 默认参数
function makecoffee($category = "cappuccino"){
//return "makeing a cup of $category.\n";
echo "making a cup of $category";
}
echo makecoffee().'<br>';
echo makecoffee("espresso").'<br>';
// add one more parameter
function makeyogurt($type = "acidophilus", $flavour)
{
return "making a bowl of $type and $flavour\n".'<br>';
//return "Makin a bowl of $flavour\n";
}
echo makeyogurt("","raspberry"); // won't work as expected
//echo makeyogurt();
function makeyogurt2($flavour,$type = "acidophilus")
{
//return "making a bowl of $type and $flavour\n".'<br>';
return "Makin a bowl of $flavour $type\n";
}
echo makeyogurt2("raspberry").'<br>'; // will work as expected
//return 示例
function square($num){
return $num * $num;
}
echo square(4).'<p>';
function small_numbers(){
return array(0,1,2);
}
list($ze


相关文档:

PHP函数的定义与使用

原文链接:http://www.phpdo.net/index.php/2010/02/10/1-13/
PHP中一个基本的脚本由两部分组成:主程序和函数。
函数不仅可以构成一个PHP脚本的基本功能,也使得程序结构化,有助于程序代码的重用。
PHP函数的调用
通过按照函数格式写出函数以及相应的参数即可,衣语法如下:
String substr(string str,int start) ......

php支持4种标记风格

xml标记<?php    ?>
脚本风格 <script language="php"></script>
短标记<? ?>
asp标记<%   %>
如果想支持短标记和asp标记,需要在php.ini中配置
short_open_tag
asp_tags
设为on ......

IIS+PHP+MYSQL配置功略

PHP的执行效率是有目共睹的,这也是我喜欢它的原因之一,和它称为绝妙搭档的Mysql以及Apache想融合,不能不惊叹其效率了。PHP更新也很快,这里列举了目前最新版本PHP4.3.2RC4(几乎没有BUG了,估计写完这篇不久后正式版就出了),和最新版本的Mysql4.0.13的安装过程。   
  PHP的安装文件可以直接到 &nb ......

Nginx + PHP + Mysql (php frm 방식)


Nginx + PHP + Mysql (php-frm 방식)

 글쓴이 :
최고관리자


조회 : 2,884  

......

php基础笔记 Arrow difference

/***************************by
garcon1986********************************/
<?php
// -> 是指对象的方法或者属性
class Cart{
public function add_item($a,$b){
echo $a+$b.'<br>';
}
}
//$cart = new Cart; 两句意义相同
$cart = new Cart();
$cart->add_item("10", 1);
// =& ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号