PHP code example of ptlis / php-serialized-data-editor
1. Go to this page and download the library: Download ptlis/php-serialized-data-editor library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ptlis / php-serialized-data-editor example snippets
use ptlis\SerializedDataEditor\Editor;
// Mock some serialized data
$serialized = serialize([
'test' => 'foo',
'test2' => 'foobar foo',
'foo' => 'baz'
]);
$editor = new Editor();
// Count how many times the search term exists as a string value
$containsCount = $editor->containsCount($serialized, 'foo'); // $containsCount === 3
// Replace all instances of the search term with the replacement term
$modified = $editor->replace($serialized, 'foo', 'wibble');
/**
* $modified when unserialized is:
* [
* 'test' => 'wibble',
* 'test2' => 'wibblebar wibble',
* 'foo' => 'baz'
* ]
*/
shell
$ composer