"home.php"                "/>  "home.php"                ">

Heim >Backend-Entwicklung >PHP-Tutorial >问几个容易的php疑问

问几个容易的php疑问

WBOY
WBOYOriginal
2016-06-13 11:47:501021Durchsuche

问几个简单的php疑问
public $button = array("Home" => "home.php"
                       "Contact => "Contact.php");

请问 这个数组中这样写【"Home" => "home.php"】是什么意思? 

.menu{
//other code;
}

我看过代码中的.menu是什么意思?

p{
}
p.foot{
}
请问 p.foot是什么意思?
------解决方案--------------------

public $button = array("Home" => "home.php"<br />                       "Contact => "Contact.php");

php的数组可以是关联键数组和下标数组
每个成员用
关联键 => 值

下标 => 值
表示

.menu{<br />//other code;<br />}
样式表CSS的 .menu 指定一个名为 menu 的类(class=menu)所具有的的属性值

p.foot{<br />}
指定 p 标记中的 foot 类的属性值

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn