mirror of
https://gh.wpcy.net/https://github.com/CaptainCore/captaincore.git
synced 2026-04-22 20:45:45 +08:00
9 lines
No EOL
259 B
PHP
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 ) );
|
|
} |