1
0
Fork 0
OpenSim.land/cron/02-add_region.php

10 lines
291 B
PHP

<?php
$imageDownloadStatement = $RUNTIME['PDO']->prepare("SELECT QueueData FROM queue WHERE QueueType = 'DownloadImage'");
$imageDownloadStatement->execute(array());
while($row = $imageDownloadStatement->fetch())
{
print_r(json_decode($row['QueueData']));
}
?>