1. Go to this page and download the library: Download ivir3zam/object-array-tools 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/ */
ivir3zam / object-array-tools example snippets
use IVIR3aM\ObjectArrayTools\AbstractActiveArray;
class ActiveArray extends AbstractActiveArray {}
$object = new ActiveArray(['Hello', 'World']);
echo 'Number of elements: ' . count($object) . "\n";
foreach ($object as $string) {
echo $string . ' ';
}
echo "\n";
$object[1] = 'Visitor';
foreach ($object as $string) {
echo $string . ' ';
}
echo "\n";
/*
OUTPUT:
Number of elements: 2
Hello World
Hello Visitor
/*
use IVIR3aM\ObjectArrayTools\AbstractActiveArray;
class DatabaseRecord extends AbstractActiveArray
{
protected function sanitizeInputHook($offset, $data)
{
// some strong operation of sanitizing $data needed, this is only a sample
return mysqli_real_escape_string($link, $data);
}
protected function sanitizeOutputHook($offset, $data)
{
return htmlspecialchars($data);
}
protected function updateHook($offset, $data, $oldData)
{
// some strong operation of updating database process needed, this is only a sample
mysqli_query($link, "UPDATE SomeTable SET `Data` = '{$data}' WHERE `ID` = " . intval($offset));
}
protected function removeHook($offset, $oldData)
{
// some strong operation of updating database process needed, this is only a sample
mysqli_query($link, "DELETE FROM SomeTable WHERE `ID` = " . intval($offset));
}
protected function insertHook($offset, $data)
{
mysqli_query($link, "INSERT INTO SomeTable SET `ID` = " . intval($offset) . ", `Data` = '{$data}'");
}
}
$db = new DatabaseRecord();
$db[1] = "Lorem Ipsum <some>script</some>'; DELETE FROM SomeTable";
// mysqli_query($link, "INSERT INTO SomeTable SET `ID` = 1, `Data` = 'Lorem Ipsum <some>script</some>\'; DELETE FROM SomeTable'");
echo $db[1];
// Lorem Ipsum <some>script</some>'; DELETE FROM SomeTable
use IVIR3aM\ObjectArrayTools\AbstractActiveArray;
class ActiveArray extends AbstractActiveArray {}
$object = new ActiveArray(['How', 'Are', 'You']);
print_r($object->getData());
/*
Array
(
[0] => How
[1] => Are
[2] => You
)
*/
$object->sort();
print_r($object->getData());
/*
Array
(
[0] => Are
[1] => How
[2] => You
)
*/