我目前正在嘗試在PHP中對我來說是新的str_replace。這是我目前的代碼。回聲一個PHP字符串內的變量替換
$postAddress = str_replace("/current-url/", "/path/to/my-news/post/", $postAddress);
<li><a href="<?php echo $postAddress; ?>" ><?php echo $post->getTitle(); ?></a></li>
然而,在那裏我有「我的新聞」上面的網址我想改變這種狀況,因此輸出存儲在管理的URL。因此,我不想爲每個類別做一個if語句,而是將它作爲變量輸出。
這裏是我一直試圖做的:
$postAddress = str_replace("/current-url/", "/path/to/"echo $cat->getTitle() "/post/", $postAddress);
我希望這是足夠的信息。任何幫助將非常感激。
串聯與'.'運算符 – bwoebi