这里我们了解到我们可以使用echo来输出文本,下来还可以使用print '';来输出文本。
本文要学习的内容如下:print与echo的区别、数组的创建与使用、类的创建、常量的定义
创建类:
class Test {//新建Test类 var $number; function Test($number="123") { $this->number=$number; } //创建方法 返回number function retrun_number () { return $this->number; } // }print echo的区别:
//echo print对比 echo "echo - 可以输出一个或多个字符串<br>print - 只允许输出一个字符串,返回值总为 1<br><br>";
定义数组与常量:
$cars=array("One","Two","Three");//定义数组 define("hello","你好啊,常量",true);//定义常量 大小写不敏感常量定义为true时大小写不敏感 hello即可以调用成HELLO false时严格区分。
echo print输出和数组的使用:
echo "echo_我的幸运数字是 {$cars[1]}<br>"; print "print_我的幸运数字是 {$cars[2]}<br>";
下面贴出完整代码:
<?php /* * echo和print的输出代码 * * To change the template for this generated file go to * Window - Preferences - PHPeclipse - PHP - Code Templates */ $cars=array("One","Two","Three");//定义数组 define("hello","你好啊,常量",true);//定义常量 大小写不敏感 class Test {//新建Test类 var $number; function Test($number="123") { $this->number=$number; } //创建方法 返回number function retrun_number () { return $this->number; } // } function print_vars($obj) { foreach (get_object_vars($obj) as $prop => $val) { echo "\t$prop = $val\n<br>"; } } echo "<h2>Echo、Print</h2>"; //echo print对比 echo "echo - 可以输出一个或多个字符串<br>print - 只允许输出一个字符串,返回值总为 1<br><br>"; echo "echo_我的幸运数字是 {$cars[1]}<br>"; print "print_我的幸运数字是 {$cars[2]}<br>"; $num = new Test("456");//输出789 $num = new Test("789"); print "\num: Properties\n"; print_vars($num);//输出返回值 echo hello; ?>点此运行》