image.php
7 months ago
message-builder.php
8 months ago
model-environment.php
7 months ago
response-id-manager.php
6 months ago
session.php
11 months ago
usage-stats.php
6 months ago
usage-stats.php
478 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Services_UsageStats { |
| 4 | private $core; |
| 5 | private $tiktoken_encoders = []; |
| 6 | private $encoder_provider = null; |
| 7 | |
| 8 | public function __construct( $core ) { |
| 9 | $this->core = $core; |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Get the cl100k_base tiktoken encoder |
| 14 | * Note: We always use cl100k_base regardless of model since it's the standard for all modern OpenAI models |
| 15 | * @return object|null The tiktoken encoder or null if not available |
| 16 | */ |
| 17 | private function get_tiktoken_encoder() { |
| 18 | // Return cached encoder if available |
| 19 | if ( isset( $this->tiktoken_encoders['cl100k_base'] ) ) { |
| 20 | return $this->tiktoken_encoders['cl100k_base']; |
| 21 | } |
| 22 | |
| 23 | try { |
| 24 | // Check if class exists |
| 25 | if ( !class_exists( 'Yethee\Tiktoken\EncoderProvider' ) ) { |
| 26 | error_log( '[AI Engine Tiktoken] EncoderProvider class not found. Check if composer autoload is working.' ); |
| 27 | return null; |
| 28 | } |
| 29 | |
| 30 | // Initialize encoder provider if needed |
| 31 | if ( $this->encoder_provider === null ) { |
| 32 | $this->encoder_provider = new \Yethee\Tiktoken\EncoderProvider(); |
| 33 | } |
| 34 | |
| 35 | // Get the cl100k_base encoder (standard for modern OpenAI models) |
| 36 | $encoder = $this->encoder_provider->get( 'cl100k_base' ); |
| 37 | $this->tiktoken_encoders['cl100k_base'] = $encoder; |
| 38 | |
| 39 | // Removed success log to reduce noise |
| 40 | return $encoder; |
| 41 | } |
| 42 | catch ( \Exception $e ) { |
| 43 | error_log( '[AI Engine Tiktoken] Failed to initialize encoder: ' . $e->getMessage() ); |
| 44 | return null; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | // TODO: Remove after April 2026 - Simplify to single argument format |
| 49 | public function estimate_tokens( ...$args ) { |
| 50 | // Handle multiple argument formats for backward compatibility |
| 51 | $text = ''; |
| 52 | $model = null; |
| 53 | |
| 54 | // If first argument is an array, process messages |
| 55 | if ( !empty( $args[0] ) && is_array( $args[0] ) ) { |
| 56 | foreach ( $args[0] as $message ) { |
| 57 | $text .= isset( $message['content']['text'] ) ? $message['content']['text'] : ''; |
| 58 | $text .= isset( $message['content'] ) && is_string( $message['content'] ) ? $message['content'] : ''; |
| 59 | } |
| 60 | $model = $args[1] ?? null; |
| 61 | } |
| 62 | // Otherwise treat first argument as text |
| 63 | else { |
| 64 | $text = $args[0] ?? ''; |
| 65 | $model = $args[1] ?? null; |
| 66 | } |
| 67 | |
| 68 | // Convert to string if needed |
| 69 | if ( !is_string( $text ) ) { |
| 70 | // Handle arrays that weren't caught by the first condition |
| 71 | if ( is_array( $text ) ) { |
| 72 | $text = json_encode( $text ); |
| 73 | } |
| 74 | // Handle objects |
| 75 | elseif ( is_object( $text ) ) { |
| 76 | $text = method_exists( $text, '__toString' ) ? (string) $text : json_encode( $text ); |
| 77 | } |
| 78 | // Handle other types (int, float, bool, null) |
| 79 | else { |
| 80 | $text = (string) $text; |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | // Apply filters for customization |
| 85 | $text = apply_filters( 'mwai_estimate_tokens_text', $text, $model ); |
| 86 | $tokens = apply_filters( 'mwai_estimate_tokens', null, $text, $model ); |
| 87 | if ( $tokens !== null ) { |
| 88 | return $tokens; |
| 89 | } |
| 90 | |
| 91 | // Try to use tiktoken for accurate counting (cl100k_base encoder) |
| 92 | $encoder = $this->get_tiktoken_encoder(); |
| 93 | if ( $encoder ) { |
| 94 | try { |
| 95 | $encoded = $encoder->encode( $text ); |
| 96 | $token_count = count( $encoded ); |
| 97 | |
| 98 | // Comparison logging removed - tiktoken is working correctly |
| 99 | |
| 100 | return $token_count; |
| 101 | } |
| 102 | catch ( Exception $e ) { |
| 103 | error_log( '[AI Engine Tiktoken] Encoding failed, falling back to estimation: ' . $e->getMessage() ); |
| 104 | } |
| 105 | } |
| 106 | else { |
| 107 | error_log( '[AI Engine Tiktoken] Encoder not available, using fallback' ); |
| 108 | } |
| 109 | |
| 110 | // Fallback to old estimation method |
| 111 | return $this->fallback_estimate_tokens( $text ); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Fallback token estimation method (the original implementation) |
| 116 | */ |
| 117 | private function fallback_estimate_tokens( $text ) { |
| 118 | $multiplier = 4; |
| 119 | $hasChineseChars = preg_match( '/[\x{4e00}-\x{9fa5}]/u', $text ); |
| 120 | $hasJapaneseChars = preg_match( '/[\x{3040}-\x{309f}\x{30a0}-\x{30ff}]/u', $text ); |
| 121 | $hasKoreanChars = preg_match( '/[\x{ac00}-\x{d7af}]/u', $text ); |
| 122 | if ( $hasChineseChars || $hasJapaneseChars || $hasKoreanChars ) { |
| 123 | $multiplier = 2; |
| 124 | } |
| 125 | $tokens = (int) ( ( function_exists( 'mb_strlen' ) ? mb_strlen( $text ) : strlen( $text ) ) / $multiplier ); |
| 126 | return $tokens; |
| 127 | } |
| 128 | |
| 129 | public function record_tokens_usage( $model, $in_tokens, $out_tokens = 0, $returned_price = null ) { |
| 130 | if ( !is_numeric( $in_tokens ) ) { |
| 131 | $in_tokens = 0; |
| 132 | } |
| 133 | if ( !is_numeric( $out_tokens ) ) { |
| 134 | $out_tokens = 0; |
| 135 | } |
| 136 | |
| 137 | // Normalize returned_price - keep null when price is unavailable |
| 138 | $price_for_tracking = 0; // For monthly/daily accumulation |
| 139 | if ( !empty( $returned_price ) || $returned_price === 0 ) { |
| 140 | $returned_price = is_array( $returned_price ) ? |
| 141 | ( isset( $returned_price['price'] ) ? $returned_price['price'] : null ) : |
| 142 | ( is_numeric( $returned_price ) ? $returned_price : null ); |
| 143 | $price_for_tracking = $returned_price ?? 0; |
| 144 | } else { |
| 145 | $returned_price = null; |
| 146 | } |
| 147 | |
| 148 | // Record monthly usage |
| 149 | $usage = $this->core->get_option( 'ai_usage' ); |
| 150 | $month = date( 'Y-m' ); |
| 151 | if ( !isset( $usage[$month] ) ) { |
| 152 | $usage[$month] = []; |
| 153 | } |
| 154 | if ( !isset( $usage[$month][$model] ) ) { |
| 155 | $usage[$month][$model] = [ |
| 156 | 'prompt_tokens' => 0, |
| 157 | 'completion_tokens' => 0, |
| 158 | 'total_tokens' => 0, |
| 159 | 'returned_price' => 0, |
| 160 | 'queries' => 0 |
| 161 | ]; |
| 162 | } |
| 163 | // Ensure all token fields exist for existing data |
| 164 | if ( !isset( $usage[$month][$model]['prompt_tokens'] ) ) { |
| 165 | $usage[$month][$model]['prompt_tokens'] = 0; |
| 166 | } |
| 167 | if ( !isset( $usage[$month][$model]['completion_tokens'] ) ) { |
| 168 | $usage[$month][$model]['completion_tokens'] = 0; |
| 169 | } |
| 170 | if ( !isset( $usage[$month][$model]['total_tokens'] ) ) { |
| 171 | $usage[$month][$model]['total_tokens'] = 0; |
| 172 | } |
| 173 | if ( !isset( $usage[$month][$model]['returned_price'] ) ) { |
| 174 | $usage[$month][$model]['returned_price'] = 0; |
| 175 | } |
| 176 | if ( !isset( $usage[$month][$model]['queries'] ) ) { |
| 177 | $usage[$month][$model]['queries'] = 0; |
| 178 | } |
| 179 | $usage[$month][$model]['prompt_tokens'] += $in_tokens; |
| 180 | $usage[$month][$model]['completion_tokens'] += $out_tokens; |
| 181 | $usage[$month][$model]['total_tokens'] += $in_tokens + $out_tokens; |
| 182 | $usage[$month][$model]['queries'] += 1; |
| 183 | $usage[$month][$model]['returned_price'] += $price_for_tracking; |
| 184 | |
| 185 | // Clean up old monthly data (keep only last 2 years) |
| 186 | $this->cleanup_old_monthly_data( $usage ); |
| 187 | $this->core->update_option( 'ai_usage', $usage ); |
| 188 | |
| 189 | // Record daily usage |
| 190 | $daily_usage = $this->core->get_option( 'ai_usage_daily', [] ); |
| 191 | $day = date( 'Y-m-d' ); |
| 192 | if ( !isset( $daily_usage[$day] ) ) { |
| 193 | $daily_usage[$day] = []; |
| 194 | } |
| 195 | if ( !isset( $daily_usage[$day][$model] ) ) { |
| 196 | $daily_usage[$day][$model] = [ |
| 197 | 'prompt_tokens' => 0, |
| 198 | 'completion_tokens' => 0, |
| 199 | 'total_tokens' => 0, |
| 200 | 'returned_price' => 0, |
| 201 | 'queries' => 0 |
| 202 | ]; |
| 203 | } |
| 204 | // Ensure all token fields exist for existing data |
| 205 | if ( !isset( $daily_usage[$day][$model]['prompt_tokens'] ) ) { |
| 206 | $daily_usage[$day][$model]['prompt_tokens'] = 0; |
| 207 | } |
| 208 | if ( !isset( $daily_usage[$day][$model]['completion_tokens'] ) ) { |
| 209 | $daily_usage[$day][$model]['completion_tokens'] = 0; |
| 210 | } |
| 211 | if ( !isset( $daily_usage[$day][$model]['total_tokens'] ) ) { |
| 212 | $daily_usage[$day][$model]['total_tokens'] = 0; |
| 213 | } |
| 214 | if ( !isset( $daily_usage[$day][$model]['returned_price'] ) ) { |
| 215 | $daily_usage[$day][$model]['returned_price'] = 0; |
| 216 | } |
| 217 | if ( !isset( $daily_usage[$day][$model]['queries'] ) ) { |
| 218 | $daily_usage[$day][$model]['queries'] = 0; |
| 219 | } |
| 220 | $daily_usage[$day][$model]['prompt_tokens'] += $in_tokens; |
| 221 | $daily_usage[$day][$model]['completion_tokens'] += $out_tokens; |
| 222 | $daily_usage[$day][$model]['total_tokens'] += $in_tokens + $out_tokens; |
| 223 | $daily_usage[$day][$model]['queries'] += 1; |
| 224 | $daily_usage[$day][$model]['returned_price'] += $price_for_tracking; |
| 225 | |
| 226 | // Clean up old daily data (keep only last 30 days) |
| 227 | $this->cleanup_old_daily_data( $daily_usage ); |
| 228 | $this->core->update_option( 'ai_usage_daily', $daily_usage ); |
| 229 | |
| 230 | // Return the usage data for this specific request |
| 231 | return [ |
| 232 | 'prompt_tokens' => $in_tokens, |
| 233 | 'completion_tokens' => $out_tokens, |
| 234 | 'total_tokens' => $in_tokens + $out_tokens, |
| 235 | 'price' => $returned_price, |
| 236 | 'queries' => 1 |
| 237 | ]; |
| 238 | } |
| 239 | |
| 240 | public function record_audio_usage( $model, $seconds ) { |
| 241 | // Record monthly usage |
| 242 | $usage = $this->core->get_option( 'ai_usage' ); |
| 243 | $month = date( 'Y-m' ); |
| 244 | if ( !isset( $usage[$month] ) ) { |
| 245 | $usage[$month] = []; |
| 246 | } |
| 247 | if ( !isset( $usage[$month][$model] ) ) { |
| 248 | $usage[$month][$model] = [ 'seconds' => 0, 'queries' => 0 ]; |
| 249 | } |
| 250 | if ( !isset( $usage[$month][$model]['seconds'] ) ) { |
| 251 | $usage[$month][$model]['seconds'] = 0; |
| 252 | } |
| 253 | if ( !isset( $usage[$month][$model]['queries'] ) ) { |
| 254 | $usage[$month][$model]['queries'] = 0; |
| 255 | } |
| 256 | $usage[$month][$model]['seconds'] += $seconds; |
| 257 | $usage[$month][$model]['queries'] += 1; |
| 258 | $this->cleanup_old_monthly_data( $usage ); |
| 259 | $this->core->update_option( 'ai_usage', $usage ); |
| 260 | |
| 261 | // Record daily usage |
| 262 | $daily_usage = $this->core->get_option( 'ai_usage_daily', [] ); |
| 263 | $day = date( 'Y-m-d' ); |
| 264 | if ( !isset( $daily_usage[$day] ) ) { |
| 265 | $daily_usage[$day] = []; |
| 266 | } |
| 267 | if ( !isset( $daily_usage[$day][$model] ) ) { |
| 268 | $daily_usage[$day][$model] = [ 'seconds' => 0, 'queries' => 0 ]; |
| 269 | } |
| 270 | if ( !isset( $daily_usage[$day][$model]['seconds'] ) ) { |
| 271 | $daily_usage[$day][$model]['seconds'] = 0; |
| 272 | } |
| 273 | if ( !isset( $daily_usage[$day][$model]['queries'] ) ) { |
| 274 | $daily_usage[$day][$model]['queries'] = 0; |
| 275 | } |
| 276 | $daily_usage[$day][$model]['seconds'] += $seconds; |
| 277 | $daily_usage[$day][$model]['queries'] += 1; |
| 278 | $this->cleanup_old_daily_data( $daily_usage ); |
| 279 | $this->core->update_option( 'ai_usage_daily', $daily_usage ); |
| 280 | |
| 281 | // Return the usage data for this specific request |
| 282 | return [ |
| 283 | 'seconds' => $seconds, |
| 284 | 'queries' => 1 |
| 285 | ]; |
| 286 | } |
| 287 | |
| 288 | public function record_images_usage( $model, $resolution, $images ) { |
| 289 | // Record monthly usage |
| 290 | $usage = $this->core->get_option( 'ai_usage' ); |
| 291 | $month = date( 'Y-m' ); |
| 292 | if ( !isset( $usage[$month] ) ) { |
| 293 | $usage[$month] = []; |
| 294 | } |
| 295 | if ( !isset( $usage[$month][$model] ) ) { |
| 296 | $usage[$month][$model] = [ 'resolution' => [], 'images' => 0, 'queries' => 0 ]; |
| 297 | } |
| 298 | if ( !isset( $usage[$month][$model]['images'] ) ) { |
| 299 | $usage[$month][$model]['images'] = 0; |
| 300 | } |
| 301 | if ( !isset( $usage[$month][$model]['resolution'] ) ) { |
| 302 | $usage[$month][$model]['resolution'] = []; |
| 303 | } |
| 304 | if ( !isset( $usage[$month][$model]['resolution'][$resolution] ) ) { |
| 305 | $usage[$month][$model]['resolution'][$resolution] = 0; |
| 306 | } |
| 307 | if ( !isset( $usage[$month][$model]['queries'] ) ) { |
| 308 | $usage[$month][$model]['queries'] = 0; |
| 309 | } |
| 310 | $usage[$month][$model]['images'] += $images; |
| 311 | $usage[$month][$model]['resolution'][$resolution] += $images; |
| 312 | $usage[$month][$model]['queries'] += 1; |
| 313 | $this->cleanup_old_monthly_data( $usage ); |
| 314 | $this->core->update_option( 'ai_usage', $usage ); |
| 315 | |
| 316 | // Record daily usage |
| 317 | $daily_usage = $this->core->get_option( 'ai_usage_daily', [] ); |
| 318 | $day = date( 'Y-m-d' ); |
| 319 | if ( !isset( $daily_usage[$day] ) ) { |
| 320 | $daily_usage[$day] = []; |
| 321 | } |
| 322 | if ( !isset( $daily_usage[$day][$model] ) ) { |
| 323 | $daily_usage[$day][$model] = [ 'resolution' => [], 'images' => 0, 'queries' => 0 ]; |
| 324 | } |
| 325 | if ( !isset( $daily_usage[$day][$model]['images'] ) ) { |
| 326 | $daily_usage[$day][$model]['images'] = 0; |
| 327 | } |
| 328 | if ( !isset( $daily_usage[$day][$model]['resolution'] ) ) { |
| 329 | $daily_usage[$day][$model]['resolution'] = []; |
| 330 | } |
| 331 | if ( !isset( $daily_usage[$day][$model]['resolution'][$resolution] ) ) { |
| 332 | $daily_usage[$day][$model]['resolution'][$resolution] = 0; |
| 333 | } |
| 334 | if ( !isset( $daily_usage[$day][$model]['queries'] ) ) { |
| 335 | $daily_usage[$day][$model]['queries'] = 0; |
| 336 | } |
| 337 | $daily_usage[$day][$model]['images'] += $images; |
| 338 | $daily_usage[$day][$model]['resolution'][$resolution] += $images; |
| 339 | $daily_usage[$day][$model]['queries'] += 1; |
| 340 | $this->cleanup_old_daily_data( $daily_usage ); |
| 341 | $this->core->update_option( 'ai_usage_daily', $daily_usage ); |
| 342 | |
| 343 | // Calculate price based on model and resolution |
| 344 | $price = 0; |
| 345 | $modelInfo = $this->get_model_info( $model ); |
| 346 | if ( $modelInfo && isset( $modelInfo['resolutions'] ) ) { |
| 347 | foreach ( $modelInfo['resolutions'] as $res ) { |
| 348 | if ( $res['name'] === $resolution && isset( $res['price'] ) ) { |
| 349 | $price = $res['price'] * $images; |
| 350 | break; |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | // Return the usage data for this specific request |
| 356 | return [ |
| 357 | 'images' => $images, |
| 358 | 'queries' => 1, |
| 359 | 'price' => $price, |
| 360 | 'accuracy' => $price > 0 ? 'price' : 'estimated' // 'price' = calculated from known pricing, not from API |
| 361 | ]; |
| 362 | } |
| 363 | |
| 364 | public function record_videos_usage( $model, $resolution, $seconds ) { |
| 365 | // Record monthly usage |
| 366 | $usage = $this->core->get_option( 'ai_usage' ); |
| 367 | $month = date( 'Y-m' ); |
| 368 | if ( !isset( $usage[$month] ) ) { |
| 369 | $usage[$month] = []; |
| 370 | } |
| 371 | if ( !isset( $usage[$month][$model] ) ) { |
| 372 | $usage[$month][$model] = [ 'resolution' => [], 'seconds' => 0, 'queries' => 0 ]; |
| 373 | } |
| 374 | if ( !isset( $usage[$month][$model]['seconds'] ) ) { |
| 375 | $usage[$month][$model]['seconds'] = 0; |
| 376 | } |
| 377 | if ( !isset( $usage[$month][$model]['resolution'] ) ) { |
| 378 | $usage[$month][$model]['resolution'] = []; |
| 379 | } |
| 380 | if ( !isset( $usage[$month][$model]['resolution'][$resolution] ) ) { |
| 381 | $usage[$month][$model]['resolution'][$resolution] = 0; |
| 382 | } |
| 383 | if ( !isset( $usage[$month][$model]['queries'] ) ) { |
| 384 | $usage[$month][$model]['queries'] = 0; |
| 385 | } |
| 386 | $usage[$month][$model]['seconds'] += $seconds; |
| 387 | $usage[$month][$model]['resolution'][$resolution] += $seconds; |
| 388 | $usage[$month][$model]['queries'] += 1; |
| 389 | $this->cleanup_old_monthly_data( $usage ); |
| 390 | $this->core->update_option( 'ai_usage', $usage ); |
| 391 | |
| 392 | // Record daily usage |
| 393 | $daily_usage = $this->core->get_option( 'ai_usage_daily', [] ); |
| 394 | $day = date( 'Y-m-d' ); |
| 395 | if ( !isset( $daily_usage[$day] ) ) { |
| 396 | $daily_usage[$day] = []; |
| 397 | } |
| 398 | if ( !isset( $daily_usage[$day][$model] ) ) { |
| 399 | $daily_usage[$day][$model] = [ 'resolution' => [], 'seconds' => 0, 'queries' => 0 ]; |
| 400 | } |
| 401 | if ( !isset( $daily_usage[$day][$model]['seconds'] ) ) { |
| 402 | $daily_usage[$day][$model]['seconds'] = 0; |
| 403 | } |
| 404 | if ( !isset( $daily_usage[$day][$model]['resolution'] ) ) { |
| 405 | $daily_usage[$day][$model]['resolution'] = []; |
| 406 | } |
| 407 | if ( !isset( $daily_usage[$day][$model]['resolution'][$resolution] ) ) { |
| 408 | $daily_usage[$day][$model]['resolution'][$resolution] = 0; |
| 409 | } |
| 410 | if ( !isset( $daily_usage[$day][$model]['queries'] ) ) { |
| 411 | $daily_usage[$day][$model]['queries'] = 0; |
| 412 | } |
| 413 | $daily_usage[$day][$model]['seconds'] += $seconds; |
| 414 | $daily_usage[$day][$model]['resolution'][$resolution] += $seconds; |
| 415 | $daily_usage[$day][$model]['queries'] += 1; |
| 416 | $this->cleanup_old_daily_data( $daily_usage ); |
| 417 | $this->core->update_option( 'ai_usage_daily', $daily_usage ); |
| 418 | |
| 419 | // Calculate price based on model, resolution, and seconds |
| 420 | $price = 0; |
| 421 | $modelInfo = $this->get_model_info( $model ); |
| 422 | if ( $modelInfo && isset( $modelInfo['resolutions'] ) ) { |
| 423 | foreach ( $modelInfo['resolutions'] as $res ) { |
| 424 | if ( $res['name'] === $resolution && isset( $res['price'] ) ) { |
| 425 | // Price is per second for video models |
| 426 | $price = $res['price'] * $seconds; |
| 427 | break; |
| 428 | } |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | // Return the usage data for this specific request |
| 433 | return [ |
| 434 | 'seconds' => $seconds, |
| 435 | 'queries' => 1, |
| 436 | 'price' => $price, |
| 437 | 'accuracy' => $price > 0 ? 'price' : 'estimated' // 'price' = calculated from known pricing, not from API |
| 438 | ]; |
| 439 | } |
| 440 | |
| 441 | private function get_model_info( $model ) { |
| 442 | $engines = $this->core->get_option( 'ai_engines' ); |
| 443 | if ( !$engines || !is_array( $engines ) ) { |
| 444 | return null; |
| 445 | } |
| 446 | |
| 447 | foreach ( $engines as $engine ) { |
| 448 | if ( isset( $engine['models'] ) && is_array( $engine['models'] ) ) { |
| 449 | foreach ( $engine['models'] as $modelInfo ) { |
| 450 | if ( isset( $modelInfo['model'] ) && $modelInfo['model'] === $model ) { |
| 451 | return $modelInfo; |
| 452 | } |
| 453 | } |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | return null; |
| 458 | } |
| 459 | |
| 460 | private function cleanup_old_monthly_data( &$usage ) { |
| 461 | $two_years_ago = date( 'Y-m', strtotime( '-2 years' ) ); |
| 462 | foreach ( $usage as $month => $data ) { |
| 463 | if ( $month < $two_years_ago ) { |
| 464 | unset( $usage[$month] ); |
| 465 | } |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | private function cleanup_old_daily_data( &$usage ) { |
| 470 | $thirty_days_ago = date( 'Y-m-d', strtotime( '-30 days' ) ); |
| 471 | foreach ( $usage as $day => $data ) { |
| 472 | if ( $day < $thirty_days_ago ) { |
| 473 | unset( $usage[$day] ); |
| 474 | } |
| 475 | } |
| 476 | } |
| 477 | } |
| 478 |