Diff
checker
テキスト
テキスト
画像
ドキュメント
Excel
フォルダ
Legal
Enterprise
デスクトップ
料金
ログイン
Diffchecker デスクトップのダウンロード
テキスト比較
2 つのテキスト ファイルの違いを見つける
ツール
履歴
ライブエディター
未変更行を折りたたむ
折り返しなし
レイアウト
分割
統合
比較精度
スマート
単語
文字
シンタックスハイライト
構文を選択
無視
テキスト変換
最初の差分へ移動
入力を編集
Diffchecker Desktop
Diffcheckerを実行する最も安全な方法。Diffchecker Desktopアプリを入手:あなたの差分はコンピューターから出ることはありません!
Desktopを入手
Untitled diff
作成日
11 年前
差分は期限切れになりません
クリア
エクスポート
共有
説明
4 削除
行
合計
削除
文字
合計
削除
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
13 行
すべてコピー
9 追加
行
合計
追加
文字
合計
追加
この機能を引き続き使用するには、アップグレードしてください
Diff
checker
Pro
価格を見る
16 行
すべてコピー
<?php
<?php
// $_POST needs to be sanitized by version 1.0
// $_POST needs to be sanitized by version 1.0
if( isset($_POST['submit']) && check_admin_referer('fitvids_action','fitvids_ref') ) {
if( isset($_POST['submit']) && check_admin_referer('fitvids_action','fitvids_ref') ) {
$fitvids_wp_message = '';
$fitvids_wp_message = '';
コピー
コピー済み
コピー
コピー済み
update_option('fitvids_wp_jq', addslashes($_POST['fitvids_wp_jq']));
if( isset( $_POST['fitvids_wp_jq'] ) )
update_option('fitvids_wp_selector', esc_js(trim($_POST['fitvids_wp_selector'])));
update_option('fitvids_wp_jq', addslashes($_POST['fitvids_wp_jq']));
update_option('fitvids_wp_custom_selector', esc_js(trim($_POST['fitvids_wp_custom_selector'])));
if( isset( $_POST['fitvids_wp_selector'] ) )
update_option('fitvids_wp_selector', esc_js(trim($_POST['fitvids_wp_selector'])));
if( isset( $_POST['fitvids_wp_custom_selector'] ) )
update_option('fitvids_wp_custom_selector', esc_js(trim($_POST['fitvids_wp_custom_selector'])));
コピー
コピー済み
コピー
コピー済み
if(
$_POST['fitvids_wp_jq'] != '') { $fitvids_wp_message .= 'You have enabled jQuery for your theme.'; }
if(
isset( $_POST['fitvids_wp_jq'] ) &&
$_POST['fitvids_wp_jq'] != '') { $fitvids_wp_message .= 'You have enabled jQuery for your theme.'; }
echo '<div id="message" class="updated below-h2"><p>FitVids is updated. ', $fitvids_wp_message ,'</p></div>';
echo '<div id="message" class="updated below-h2"><p>FitVids is updated. ', $fitvids_wp_message ,'</p></div>';
}
}
保存された差分
原文
ファイルを開く
<?php // $_POST needs to be sanitized by version 1.0 if( isset($_POST['submit']) && check_admin_referer('fitvids_action','fitvids_ref') ) { $fitvids_wp_message = ''; update_option('fitvids_wp_jq', addslashes($_POST['fitvids_wp_jq'])); update_option('fitvids_wp_selector', esc_js(trim($_POST['fitvids_wp_selector']))); update_option('fitvids_wp_custom_selector', esc_js(trim($_POST['fitvids_wp_custom_selector']))); if($_POST['fitvids_wp_jq'] != '') { $fitvids_wp_message .= 'You have enabled jQuery for your theme.'; } echo '<div id="message" class="updated below-h2"><p>FitVids is updated. ', $fitvids_wp_message ,'</p></div>'; }
変更されたテキスト
ファイルを開く
<?php // $_POST needs to be sanitized by version 1.0 if( isset($_POST['submit']) && check_admin_referer('fitvids_action','fitvids_ref') ) { $fitvids_wp_message = ''; if( isset( $_POST['fitvids_wp_jq'] ) ) update_option('fitvids_wp_jq', addslashes($_POST['fitvids_wp_jq'])); if( isset( $_POST['fitvids_wp_selector'] ) ) update_option('fitvids_wp_selector', esc_js(trim($_POST['fitvids_wp_selector']))); if( isset( $_POST['fitvids_wp_custom_selector'] ) ) update_option('fitvids_wp_custom_selector', esc_js(trim($_POST['fitvids_wp_custom_selector']))); if( isset( $_POST['fitvids_wp_jq'] ) && $_POST['fitvids_wp_jq'] != '') { $fitvids_wp_message .= 'You have enabled jQuery for your theme.'; } echo '<div id="message" class="updated below-h2"><p>FitVids is updated. ', $fitvids_wp_message ,'</p></div>'; }
違いを見つける