Skip to content

Instantly share code, notes, and snippets.

@kobaatsu
Last active May 22, 2023 01:32
Show Gist options
  • Save kobaatsu/bb28ee79038a8e1fc974930e5202ce41 to your computer and use it in GitHub Desktop.
Save kobaatsu/bb28ee79038a8e1fc974930e5202ce41 to your computer and use it in GitHub Desktop.
functions.phpでのログ取得 #wordpress
<?php
ob_start();
print_r($prev);
$test = ob_get_contents();
ob_end_clean();
error_log('ログ: ' . $test);
// 検索正規表現
// ^(\[.+?\{.+?) \{
<?php
// ...
// define('WP_DEBUG', false);
define('WP_DEBUG', true);
define('WP_DEBUG_DISPLAY', false);
define('WP_DEBUG_LOG', true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment