エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
<?php /** * 特定URLの特定IDをつけた画像を取得 */ function get_image_by_id( $url, $id ) { $img_url... <?php /** * 特定URLの特定IDをつけた画像を取得 */ function get_image_by_id( $url, $id ) { $img_url = ""; if ( isset( $url ) && $url != "" && isset( $id ) && $id != "" ) { $pageBuffer = file_get_contents( $url ); ob_start(); ob_end_clean(); if (preg_match_all("!<img [^>]*?id=\"$id\" [^>]*?src=\"([^\"]+)\"!s", $pageBuffer, $regs) || preg_match_all("!<img [^>]*?src=\"([^\"]+)\" [^>]*?id=\"$id\"!s", $pageBuffer, $re