php->符号的含义是什么


what is the meaning of a symbol -> in php

本问题已经有最佳答案,请猛点这里访问。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

$connect = mysql_connect("localhost","root","");

$db_list = mysql_list_dbs($connect);

echo"The list of database are:";

while ($row = mysql_fetch_object($db_list))
    {
        echo $row-> Database."";
    }

?>

> echo $行数据库。";

告诉我这行的冰。这是什么意思。


->符号用于访问对象的属性。例如,如果我有一个包含属性"name"、"age"的用户对象。要访问它们,我可以执行$user->name,$user->age。


有关详细信息,请查看此链接:http://php.net/manual/en/language.oop5.properties.php

简而言之,它们用于与对象或类中的属性和函数进行交互。