本文目录一览:
- 1、PHP里>gt;gt;和===是什么意思
- 2、php中$this-gt;assign(#39;list#39;, $list);是什么意思
- 3、php中->这个符号具体代表什么意思
- 4、php->是什么意思
PHP里>gt;gt;和===是什么意思
这不是 PHP 的东西。这些叫字符实体,是 HTML 的东西。
在 HTML 中一些特殊字符为了能准确显示出来,使用一些特殊组合代替。
例如:在 HTML 代码中你输入多少个空格网页都只能显示一个。你只能用 来代替空格。
是 符号
是 符号
是 符号
lt;/h3gt; 被转换两次。。
/h3 一次
/h3 两次
php中$this-gt;assign(#39;list#39;, $list);是什么意思
$this 肯定实在类中看到的吧 指的是当前类 $this-amp 指当前类下的amp变量
assign是个函数 里边都是参数
php中->这个符号具体代表什么意思
-在php里是调用对象方法很或者属性的运算符。在一个类中,类的函数需要调用自身的方法或者属性需要用$this-来调用,而在类的实例中,也是通过-来调用的,只是前面的变量不是$this
例如:
?php
class test{
public $test="test";
public function get_test(){
return $this-test;//调用public属性$test,在php类中不能用$test
}
}
$a = new test();
echo $a-get_test();//该语句输出test
php->是什么意思
一、=,-的意思:
-是对象执行方法或取得属性用的。
=是数组里键和值对应用的。
二、用法
1、= 的用法数组中用于数组的 key 和 value之间的关系例如:
$a = array('0' = '1','2' = '4',);echo $a['0'];echo $a['2'];
2、- 的用法类中用于引用类实例的方法和属性例如:
class Test{function add(){return $this-var++;}var $var = 0;}$a = new Test;
//实例化对象名称
echo $a-add();echo $a-var;
扩展资料
PHP中-代码如下:
?php
class Car {
public $speed = 0;
//增加speedUp方法,使speed加10
public function speedUp(){
$this-speed+=10;
}
}
$car = new Car();
$car-speedUp();
echo $car-speed;
?
PHP中=代码如下:
?php
//从数组变量$arr中,读取键为apple的值
$arr = array('apple'="苹果",'banana'="香蕉",'pineapple'="菠萝");
$arr0=$arr["apple"];
if( isset($arr0) )
{print_r($arr0);
}
?
参考资料来源:百度百科 - PHP (超文本预处理器)
百度百科 - PHP运算符