<?php $string = 'Test need to change'; $pattern = '/(Test).*/'; $insert = 'changed text'; $replacement = "$1 $insert"; echo preg_replace($ ...
確定! 回上一頁