P粉5170907482023-09-04 09:53:31
如果我理解正確的話,您希望允許使用者使用以下參數編輯文字範本
{clientName} {selectedVonderName}
然後加入資料庫中的實際值(例如 mysql 資料)
在這種情況下,使用 str_replace 來完成這項工作
例如,如果您從 mysql 資料庫資料中取得數據,然後將資料指派為 $clientName
和 $selectedVonderName
,則
<?php /// other code $text=".......{clientName} ....{selectedVonderName}"; $text=str_replace("{clientName}", $clientName, $text); $text=str_replace("{selectedVonderName}", $selectedVonderName, $text); /// other code ?>