47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
// Path to the input JSON file
|
|
$inputFile = 'material-icons-baseline.json';
|
|
// Path to the output JSON file
|
|
$outputFile = 'material-icons-baseline-unescaped.json';
|
|
|
|
// Step 1: Load the JSON data
|
|
$jsonData = file_get_contents($inputFile);
|
|
|
|
// Check if the file was read successfully
|
|
if ($jsonData === false) {
|
|
die("Error reading the JSON file.");
|
|
}
|
|
|
|
// Step 2: Decode the JSON data into a PHP array
|
|
$data = json_decode($jsonData, true);
|
|
|
|
// Check if JSON decoding was successful
|
|
if ($data === null) {
|
|
die("Error decoding the JSON data.");
|
|
}
|
|
|
|
// Step 3: Iterate through each item and unescape the 'paths' key
|
|
foreach ($data as &$icon) {
|
|
// Unescape only HTML entities (without affecting forward slashes)
|
|
$icon['paths'] = html_entity_decode($icon['paths'], ENT_QUOTES | ENT_HTML5);
|
|
}
|
|
|
|
// Step 4: Encode the modified data back into JSON format
|
|
$newJsonData = json_encode($data, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
|
|
|
|
// Check if encoding was successful
|
|
if ($newJsonData === false) {
|
|
die("Error encoding the JSON data.");
|
|
}
|
|
|
|
// Step 5: Save the modified JSON data to the output file
|
|
file_put_contents($outputFile, $newJsonData);
|
|
|
|
// Check if file writing was successful
|
|
if (file_put_contents($outputFile, $newJsonData) === false) {
|
|
die("Error saving the modified JSON data.");
|
|
}
|
|
|
|
echo "Paths have been unescaped and saved to '$outputFile'.\n";
|
|
?>
|