php cr_get_data_crypto.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php cr_get_data_crypto.php相关的知识,希望对你有一定的参考价值。

<?php

function cr_get_data_crypto( $type = '', $symbol = '' ) {
    $symbol    = $symbol ? $symbol : cr_get_crypto_symbol();
    $cache_key = $symbol . '-coinsnapshot';
    $data      = wp_cache_get( $cache_key );

    if ( $symbol && false === $data ) {
        $file = CRYPT_REVIEWS_PATH . "data-import/coins/$symbol-coinsnapshot.json";
        $data = is_file( $file ) ? json_decode( file_get_contents( $file ) ) : [];

        // Сохраняем данные в кеш
        wp_cache_set( $cache_key, $data );
    }

    if ( empty( $data->Data ) || ! $data = $data->Data ) {
        return '';
    }

    foreach ( explode( '/', $type ) as $key ) {
        $data = isset( $data->{$key} ) ? $data->{$key} : '';
    }

    return $data;
}

以上是关于php cr_get_data_crypto.php的主要内容,如果未能解决你的问题,请参考以下文章

php send.php php邮件模板#php

IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?

如何从php5升级到php7

请问php中如何调用php文件中的内容?

php [php:PHPMailer示例] php库“PHPMailer”示例。 #PHP

php基础