ホームページ >バックエンド開発 >PHPチュートリアル >editor で画像にドメイン名を追加する_PHP チュートリアル
/**
* fckedit で画像を置換し、ドメイン名を追加します
* @param string $content 置換するコンテンツ
* @param string $strUrl コンテンツに画像を追加するドメイン名
* @return string
* @eg
*/
function replacePicUrl($content = null, $strUrl = null) {
if ($strUrl) {
画像パスの src の正規表現を抽出し、結果を $matches 中へ格納preg_match_all( "/< img(。*)src ="([^"]+)” [^>]+>/isu”、$ content、$ matches); $ img =””;
$ img = ""; ] = $img_new ;
//置換コンテンツ
return $vote_content; $content を返す;
http://www.bkjia.com/PHPjc/478768.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/478768.html
技術記事
/*** fckedit の画像を置換し、ドメイン名を追加 * @param string $content 置換するコンテンツ * @param string $strUrl コンテンツ内の画像に追加するドメイン名 * @return string * @eg*/ 関数 r...