captaincore/lib/local-scripts/quicksave-list-field.php
2024-05-05 05:11:16 -04:00

9 lines
No EOL
259 B
PHP

<?php
parse_str( implode( '&', $args ), $arguments );
$arguments = (object) $arguments;
if ( is_file( $arguments->file )){
$data = json_decode( file_get_contents( $arguments->file ) );
echo implode( " ", array_column( $data, $arguments->field ) );
}