mirror of
https://github.com/php/web-pecl.git
synced 2026-03-24 07:12:15 +01:00
7 lines
134 B
PHP
7 lines
134 B
PHP
<?php
|
|
$data = json_decode(file_get_contents('new_id.txt'));
|
|
foreach ($data as $bug) {
|
|
$a[$bug->id] = $bug->new_id;
|
|
}
|
|
var_export($a);
|