我想不同的方式顯示我的文章信息,並帶有開啓/關閉功能,這樣的事情: 1.title 2.text 3.date 或 1.title 2.readmore按鈕 3.text 等等是否有其他方式顯示信息?
下面的腳本可以做到這一點,但它有點漫長而複雜的是還有其他方法可以做到這一點?不使用數組。
$ firstpositioninfo是信息字段中顯示。 1 - 標題,兩個文本等。
<div id="pos1">
<?php
if ($firstpositioninfo = 1) {
echo 'Here will be title';
elseif ($firstpositioninfo = 2) {
echo 'Here will be text';
elseif ($firstpositioninfo = 3) {
echo 'Here will be readmore';
.....
else { }
?></div>
<div id="pos2">
<?php
if ($firstpositioninfo = 1) {
echo 'Here will be title';
elseif ($firstpositioninfo = 2) {
echo 'Here will be text';
elseif ($firstpositioninfo = 3) {
echo 'Here will be readmore';
.....
else { }
?></div>
哪裏陣列? – itachi 2012-04-10 08:59:52
爲什麼你不想要數組? [以不同的方式顯示字符串]的 – Vytautas 2012-04-10 09:00:00
可能重複(http://stackoverflow.com/questions/10069720/displaying-strings-in-different-ways) – deceze 2012-04-10 09:01:18