运行 ❯
获取您的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $replace = array("1: AAA","2: AAA","3: AAA"); // Replace AAA in each string with BBB echo implode("<br>",substr_replace($replace,'BBB',3,3)); ?> </body> </html>
1:BBB
2:BBB
3:BBB