タグ除去の正規表現

| | コメント(0)

PHPでタグを除去する際の正規表現はこちら

preg_replace('/<[^>]*>/', '', $string);

コメントする