📄 blobarray.php
字号:
<?php/** * Piwik - Open source web analytics * * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: Record.php 180 2008-01-17 16:32:37Z matt $ * * @package Piwik_ArchiveProcessing *//** * Array of blob records. * Useful for easily saving splited data in the DB. * * Example: $record = new Piwik_ArchiveProcessing_Record_BlobArray( * 'veryLongBook', * 0 => serialize( array( '1st chapter very long, 6MB of data we dont want to save' )), * 1 => serialize( array( '2nd chapter very long, 8MB of data we dont want to save' )), * 2 => serialize( array( '3rd chapter very long, 7MB of data we dont want to save' )), * 3 => serialize( array( '4th chapter very long, 10MB of data we dont want to save' )), * ); * * Will be saved in the DB as * veryLongBook => X * veryLongBook_1 => Y * veryLongBook_2 => Z * veryLongBook_3 => M * * @package Piwik_ArchiveProcessing * @subpackage Piwik_ArchiveProcessing_Record */class Piwik_ArchiveProcessing_Record_BlobArray extends Piwik_ArchiveProcessing_Record{ function __construct( $name, $aValue) { foreach($aValue as $id => $value) { // for the parent Table we keep the name // for example for the Table of searchEngines we keep the name 'referer_search_engine' // but for the child table of 'Google' which has the ID = 9 the name would be 'referer_search_engine_9' if($id == 0) { $newName = $name; } else { $newName = $name . '_' . $id; } $record = new Piwik_ArchiveProcessing_Record_Blob( $newName, $value ); } } public function __toString() { throw new Exception( 'Not valid' ); } public function delete() { throw new Exception( 'Not valid' ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -