我有一个CMS脚本。我需要有关标题格式的帮助。 例如:
用户将格式定义为:“在%s处观看%v”
%v是视频名称,%s是站点名称。
答案 0 :(得分:4)
听起来像你想要sprintf()
$videoName = 'foo';
$siteName = 'bar';
$output = 'Watch %s at %s';
printf($output, $videoName, $siteName);
答案 1 :(得分:0)
查看PHP函数sprintf()
答案 2 :(得分:0)
听起来你想使用str_replace
。
mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
<?php
// Provides: <body text='black'>
$bodytag = str_replace("%body%", "black", "<body text='%body%'>");
<?php