$string = '1.this is the first2.second3.and thethird';
$string = str_replace('??', '<br> ??', $string);
echo $string;
//output:
1.this is the first <br>
2.second <br>
3.and thethird
何str_replaceが必要ですか? 出力のフリーリスト番号には<br>
タグがありません。 おかげ文字列置換の問題
[preg_replace](http://us.php.net/manual/en/function.preg-replace.php)が必要です。 – webbiedave