• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP file_get_contents_curl函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中file_get_contents_curl函数的典型用法代码示例。如果您正苦于以下问题:PHP file_get_contents_curl函数的具体用法?PHP file_get_contents_curl怎么用?PHP file_get_contents_curl使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了file_get_contents_curl函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: worksheetsToArray

function worksheetsToArray($id)
{
    $entries = array();
    $i = 1;
    while (true) {
        $url = 'https://spreadsheets.google.com/feeds/list/' . $id . '/' . $i . '/public/full?alt=json';
        $data = @json_decode(file_get_contents_curl($url), true);
        $starttag = substr($data['feed']['title']["\$t"], 0, strpos($data['feed']['title']["\$t"], " "));
        if (!isset($data['feed']['entry'])) {
            break;
        }
        foreach ($data['feed']['entry'] as $entryKey => $entry) {
            $data['feed']['entry'][$entryKey]['gsx$starttag']["\$t"] = $starttag;
        }
        $entries = array_merge($entries, $data['feed']['entry']);
        $i++;
    }
    return $entries;
}
开发者ID:NicoKnoll,项目名称:BLNFMCalSync,代码行数:19,代码来源:blnfmcalsync.php


示例2: html_no_comment

function html_no_comment($url)
{
    $url = _urlencode($url);
    // create HTML DOM
    $check_curl = _isCurl();
    if (!($html = file_get_html($url))) {
        if (!($html = str_get_html(file_get_contents_curl($url))) or !$check_curl) {
            return false;
        }
    }
    // remove all comment elements
    foreach ($html->find('comment') as $e) {
        $e->outertext = '';
    }
    $ret = $html->save();
    // clean up memory
    $html->clear();
    unset($html);
    return $ret;
}
开发者ID:anhyeuviolet,项目名称:feednews,代码行数:20,代码来源:admin.functions.php


示例3: getSteamNames

function getSteamNames($steamID)
{
    $steamUserNamesUrl = file_get_contents_curl("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=41AF33A7F00028D1E153D748597DEEF3&steamids=" . $steamID);
    $content = json_decode($steamUserNamesUrl, true);
    $pieces = explode(",%20", $steamID);
    if (count($pieces) > 99) {
        for ($x = 100; $x <= count($pieces) - 2; $x++) {
            if ($x >= count($pieces) - 2) {
                $steamfriendsExtended .= $pieces[$x];
            } else {
                $steamfriendsExtended .= $pieces[$x] . ',%20';
            }
        }
        $steamfriendsExtendedUrl = file_get_contents_curl("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=41AF33A7F00028D1E153D748597DEEF3&steamids=" . $steamfriendsExtended);
        $steamfriendsExtendedContent = json_decode($steamfriendsExtendedUrl, true);
        foreach ($steamfriendsExtendedContent['response']['players'] as $player) {
            array_push($content['response']['players'], $player);
        }
    }
    return $content['response']['players'];
}
开发者ID:LennartEdberg,项目名称:SteamPortal,代码行数:21,代码来源:userInfo.php


示例4: instagram_get_photos

function instagram_get_photos($username, $num = 5)
{
    //look for user id
    $requser = "https://api.instagram.com/v1/users/search?q=" . $username . "&client_id=" . INSTAGRAM_KEY;
    $res = file_get_contents_curl($requser);
    $user_data = json_decode($res);
    $user_id = 0;
    //print_r($user_data);
    foreach ($user_data->data as $user) {
        if ($user->username == $username) {
            $user_id = $user->id;
            break;
        }
    }
    if ($user_id == 0) {
        return false;
    }
    //and now get the pictures
    $uri = "https://api.instagram.com/v1/users/" . $user_id . "/media/recent?count=" . $num . "&client_id=" . INSTAGRAM_KEY;
    $res = file_get_contents_curl($uri);
    $content = json_decode($res);
    return $content;
}
开发者ID:danieljulia,项目名称:backend_wp_plugin_instagram,代码行数:23,代码来源:instagram-api.php


示例5: fn_sb_movie_infobox_cache

function fn_sb_movie_infobox_cache($id, $detailType)
{
    //    $cacheage = get_option('imdbcacheage', -1);
    $cacheage = -1;
    $imageCacheDir = SB_CACHE_DIR . "/" . $id . ".jpg";
    $imageCacheUrl = SB_CACHE_URL . "/" . $id . ".jpg";
    $jsonCacheDir = SB_CACHE_DIR . "/" . $id . ".json";
    if (!file_exists($imageCacheDir) || $cacheage > -1 && filemtime($imageCacheDir) < time() - $cacheage || !file_exists($jsonCacheDir) || $cacheage > -1 && filemtime($jsonCacheDir) < time() - $cacheage) {
        //$url = "http://www.omdbapi.com/?i=".$movieid."&plot=short&r=json";
        $url = "http://www.omdbapi.com/?i={$id}&plot={$detailType}&r=json";
        $http_args = array('user-agent' => 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)');
        $rawResponse = wp_remote_request($url, $http_args);
        $rawResponse = $rawResponse['body'];
        //        $raw = file_get_contents_curl('http://www.omdbapi.com/?i=' . $id."&plot=short&r=json");
        $json = json_decode($rawResponse, true);
        $jsonResult = file_put_contents($jsonCacheDir, $rawResponse);
        //        echo("jsonResult". $jsonResult . "<br/>");
        $img = file_get_contents_curl($json['Poster']);
        $jsonResult = file_put_contents($imageCacheDir, $img);
        $json['Poster'] = $imageCacheUrl;
    } else {
        $rawResponse = file_get_contents($jsonCacheDir);
        $json = json_decode($rawResponse, true);
        $json['Poster'] = $imageCacheUrl;
    }
    return $json;
}
开发者ID:ScriptonBasestar,项目名称:sb-review-infobox,代码行数:27,代码来源:shortcodes-imdb.php


示例6: method

 /**
  * Делает запрос к Api VK
  * @param $method
  * @param $params
  */
 public function method($method, $params = null)
 {
     $p = "";
     if ($params && is_array($params)) {
         foreach ($params as $key => $param) {
             $p .= ($p == "" ? "" : "&") . $key . "=" . urlencode($param);
         }
     }
     /* $response = file_get_contents($this->url . $method . "?" . ($p ? $p . "&" : "") . "access_token=" . $this->access_token);
     
             if( $response ) {
                 return json_decode($response);
             } 
             return false;
         
     } */
     function file_get_contents_curl($url)
     {
         $ch = curl_init($url);
         curl_setopt($ch, CURLOPT_HEADER, True);
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
         //Устанавливаем параметр, чтобы curl возвращал данные, вместо того, чтобы выводить их в браузер.
         curl_setopt($ch, CURLOPT_URL, $url);
         $data = curl_exec($ch);
         curl_close($ch);
         return $data;
     }
     $response = file_get_contents_curl($this->url . $method . "?" . ($p ? $p . "&" : "") . "access_token=" . $this->access_token);
     if ($response) {
         return json_decode($response);
     }
     return false;
 }
开发者ID:scalderdom,项目名称:overhead.in.ua,代码行数:38,代码来源:post.php


示例7: _request

 private function _request($request)
 {
     $request = array_map('Comet_encode', $request);
     array_unshift($request, $this->ORIGIN);
     $ctx = stream_context_create(array('http' => array('timeout' => 200)));
     return json_decode(file_get_contents_curl(implode('/', $request)), true);
 }
开发者ID:albertoneto,项目名称:localhost,代码行数:7,代码来源:comet.php


示例8: buildCSV

function buildCSV()
{
    $html = file_get_contents_curl(FACULTY_WEB);
    $matches;
    $table_regex = '/<td[^>]*>(.*?)<\\/td>/';
    preg_match_all($table_regex, $html, $matches);
    $clean = array();
    $email = "";
    $name = "";
    $department = "";
    for ($i = 3; $i < count($matches[0]); $i++) {
        $text = strip_tags($matches[0][$i]);
        if ($i % 3 == 0) {
            $text = preg_replace('(\\(.*\\))', '', $text);
            $text = firstlast($text);
            $text = str_replace(",", "", $text);
            $name = $text;
        }
        if ($i % 3 == 1) {
            $text = preg_replace('(\\(.*\\))', '', $text);
            $text = str_replace(",", "", $text);
            $department = $text;
        }
        if ($i % 3 == 2) {
            $text = str_replace("*", "@uwo.ca", $text);
            $email = $text;
            array_push($clean, $email, $name, $department);
        }
    }
    $final = "";
    for ($i = 0; $i < count($clean); $i++) {
        $final .= "\"" . $clean[$i++] . "\", \"" . $clean[$i++] . "\", \"" . $clean[$i] . "\"\n";
    }
    file_put_contents(FACULTY_FILE, $final);
}
开发者ID:umairsajid,项目名称:Homeworks,代码行数:35,代码来源:functions.inc.php


示例9: cache_image

function cache_image($imageurl = '', $name)
{
    $imagename = $name . '.' . get_image_extension($imageurl);
    if (file_exists('./tmp/' . $imagename)) {
        return 'tmp/' . $imagename;
    }
    $image = file_get_contents_curl($imageurl);
    file_put_contents('tmp/' . $imagename, $image);
    return 'tmp/' . $imagename;
}
开发者ID:HighTechTorres,项目名称:TwilioCookbook,代码行数:10,代码来源:functions.php


示例10: login

function login( $uacc, $upwd ){
    $login = (array)json_decode(
        file_get_contents_curl(
            'http://apit.cedric.testapi-1.stu.edu.tw/acc/auth/uacc/'.$uacc.'/?upwd='.$upwd),true);
    # Authentication fail.
    if ( $login['status'] )
        print_response_msg(3);

    # Analyze data.
    $ou_group;
    $start_tag = "ou=";
    $close_tag = ",";
    preg_match_all("($start_tag(.*)$close_tag)siU", $login['dn'], $ou_group);

    # If login user not is student, this column value set 0.
    if ( !preg_match('/\d{2,3}/', $ou_group[1][0]) )
        $ou_group[1][0] = 0;

    # Get record data.
    $sql = "SELECT record_id FROM record WHERE account=? ";
    $record_id = sql_q( $sql, array($login['uacc']) );

    # If this account not have play record in database, insert new row to database.
    if ( !count($record_id) ) {
        $addRecord = add_record(
            $login['uacc'],
            $ou_group[1][1]
        );
        if ( $addRecord )
            $record_id = sql_q( $sql, array($login['uacc']) );
        else
            print_response_msg(5);
    }

    # Session content
    $profile = array(
        'record_id' => $record_id[0]['record_id'],
        'account'   => $login['uacc'],
        'name'      => $login['uname'],
        'dep'       => $ou_group[1][1]
    );

    # Define session
    $_SESSION[ session_id() ] = $profile;

    # Print login success message and session data.
    print_response_msg( 2, $profile );
}
开发者ID:Gadao,项目名称:traveler,代码行数:48,代码来源:function.php


示例11: power_ga_mp

function power_ga_mp($keyword, $title = '(unknown)', $referer = '')
{
    $version = 1;
    $z = rand(100000000000, 999999999999);
    // Cache Buster  to ensure browsers and proxies don't cache hits
    $power_ga_mp_GAID = 'UA-33563207-5';
    $data = array('v' => $version, 'tid' => $power_ga_mp_GAID, 'cid' => power_ga_mp_gaParseCookie(), 'uip' => $_SERVER['REMOTE_ADDR'], 'z' => $z, 't' => 'pageview', 'dh' => $_SERVER['SERVER_NAME'], 'dp' => $keyword, 'dt' => $title, 'dr' => $referer);
    if ($data) {
        $getString = 'https://ssl.google-analytics.com/collect';
        $getString .= '?payload_data&';
        $getString .= http_build_query($data);
        $result = file_get_contents_curl($getString);
        return $result;
    }
    return false;
}
开发者ID:Efreak,项目名称:YOURLS-GA-MP-Tracking,代码行数:16,代码来源:plugin.php


示例12: get_facebook_id

function get_facebook_id($url)
{
    $html = file_get_contents_curl($url);
    //parsing begins here:
    $doc = new DOMDocument();
    @$doc->loadHTML($html);
    $metas = $doc->getElementsByTagName('meta');
    for ($i = 0; $i < $metas->length; $i++) {
        $meta = $metas->item($i);
        if ($meta->getAttribute('name') == 'description') {
            $description = $meta->getAttribute('content');
        }
        if ($meta->getAttribute('property') == 'al:android:url') {
            preg_match('!\\d+!', $meta->getAttribute('content'), $fbid);
        }
    }
    return $fbid;
}
开发者ID:spoetnik,项目名称:FBsearch,代码行数:18,代码来源:profile_id.php


示例13: fetch_image_post

 public static function fetch_image_post($post_id = '', $link = '', $comment_fbid = '')
 {
     if (!$post_id || !$link) {
         return;
     }
     $image = '';
     if ($comment_fbid) {
         $app_id = FB_APP_ID;
         $app_secret = FB_SECRET;
         $url = "https://graph.facebook.com/{$comment_fbid}?access_token={$app_id}|{$app_secret}";
         $obj = json_decode(file_get_contents_curl($url));
         if (isset($obj->image) && $obj->image) {
             $image = $obj->image->url;
         }
     }
     var_dump($image);
     die;
     if (!empty($image)) {
         $graph = OpenGraph::fetch($link);
         var_dump($graph);
         die;
     }
 }
开发者ID:httvncoder,项目名称:151722441,代码行数:23,代码来源:class-dln-post-helper.php


示例14: grabSkyScanner

 public function grabSkyScanner($urls)
 {
     $folder = 'console.data_files.skyscanner';
     $doneFolder = 'console.data_files.done';
     foreach ($urls as $name => $url) {
         $saveTo = Yii::getPathOfAlias($folder) . '/' . $name . '.xml';
         $donePath = Yii::getPathOfAlias($doneFolder) . '/' . $name . '.xml';
         try {
             if (is_file($saveTo)) {
                 $this->analyzeFile($saveTo, $url);
                 rename($saveTo, $donePath);
                 continue;
             }
             if (is_file($donePath)) {
                 continue;
             }
             echo 'Grabbing using ' . $name . " ( {$url} ) ";
             $response = file_get_contents_curl($url);
             sleep(2);
             if ($response === false) {
                 throw new CException('Failed');
             }
             echo "Success.\n";
             file_put_contents($saveTo, $response);
             $this->analyzeFile($saveTo, $url);
             rename($saveTo, $donePath);
         } catch (Exception $e) {
             echo "Failed. {$e->getMessage()}\n";
         }
     }
 }
开发者ID:niranjan2m,项目名称:Voyanga,代码行数:31,代码来源:CacheCommand.php


示例15: dbConnect

    //Database connection fails
    //--------------------------------------------------------------//
    print 'Database error';
    exit;
}
// connect to database
dbConnect();
if (!isset($HTTP_RAW_POST_DATA)) {
    $HTTP_RAW_POST_DATA = file_get_contents('php://input');
}
$data = json_decode($HTTP_RAW_POST_DATA);
$time = time();
$complaint_simulator_email = '[email protected]';
//Confirm SNS subscription
if ($data->Type == 'SubscriptionConfirmation') {
    file_get_contents_curl($data->SubscribeURL);
} else {
    //detect complaints
    $obj = json_decode($data->Message);
    $notificationType = $obj->{'notificationType'};
    $problem_email = $obj->{'complaint'}->{'complainedRecipients'};
    $problem_email = $problem_email[0]->{'emailAddress'};
    $from_email = get_email($obj->{'mail'}->{'source'});
    $messageId = $obj->{'mail'}->{'messageId'};
    $from_email = $from_email[0];
    //check if email is valid, if not, exit
    if (!filter_var($problem_email, FILTER_VALIDATE_EMAIL)) {
        exit;
    }
    if ($notificationType == 'Complaint') {
        //Update complaint status
开发者ID:ariestiyansyah,项目名称:nggadu,代码行数:31,代码来源:complaints.php


示例16: send

function send($user)
{
    $url = 'http://www.ello.co/' . $user . '.json';
    echo file_get_contents_curl($url);
}
开发者ID:kieranju,项目名称:ellofetch,代码行数:5,代码来源:ellofetch.php


示例17: ashford_get_tinyurl

/**
 * Creates tinyurl
 * 
 * @author n/a
 * @version v2.0
 * @since v1.0
 * @todo -- document this function
*/
function ashford_get_tinyurl($url)
{
    if (function_exists('file_get_contents') && function_exists('curl_init')) {
        $tinyurl = file_get_contents_curl("http://tinyurl.com/api-create.php?url=" . $url);
        return $tinyurl;
    } else {
        return $url;
    }
}
开发者ID:marqui678,项目名称:finalchance.Panopta,代码行数:17,代码来源:ashford_functions.php


示例18: parse_ini_file

<?php

require 'stuff.php';
$config = parse_ini_file($argv[1]);
if (!$config) {
    echo "Couldn't parse the config file.";
    exit(1);
}
$filename = getTempNam();
if (!file_get_contents_curl("http://www.geopostcodes.com/inc/download.php?f=ISO3166-2&t=9", $filename)) {
    exit(1);
}
$zip = new Zip_Manager();
$zip->open($filename);
$zip->filteredExtractTo('./');
$zip->close();
unlink($filename);
$filename = "GeoPC_ISO3166-2.csv";
$f = fopen($filename, 'rb');
if (!$f) {
    exit(1);
}
$row = fgetcsv($f, null, ';');
if ($row != array('iso', 'country', 'code', 'name', 'altname')) {
    exit(1);
}
$pdo = getPDOConnection($config);
$pdo->beginTransaction();
$st1 = $pdo->prepare('select id id from state a1 where a1.iso = ?');
$st2 = $pdo->prepare('select a1.id id from state a1 inner join country a2 on a1.country_id = a2.id where a2.iso = ? and translate(lower(a1.name),\'áàâãäāéèêëíìïóòôõöúùûüūÁÀÂÃÄĀÉÈÊËÍÌÏÓÒÔÕÖÚÙÛÜŪçÇ‘\',\'aaaaaaeeeeiiiooooouuuuuAAAAAAEEEEIIIOOOOOUUUUUcC\') = translate(lower(?),\'áàâãäāéèêëíìïóòôõöúùûüūÁÀÂÃÄĀÉÈÊËÍÌÏÓÒÔÕÖÚÙÛÜŪçÇ‘\',\'aaaaaaeeeeiiiooooouuuuuAAAAAAEEEEIIIOOOOOUUUUUcC\') ');
$st3 = $pdo->prepare('update state set iso = ?, name = ?, country_id = (select id from country where iso = ?) where id = ?');
开发者ID:redelivre,项目名称:login-cidadao,代码行数:31,代码来源:lc_import_uf_iso.php


示例19: pdt

 public function pdt()
 {
     if (isset($this->request->post)) {
         $p_msg = "DEBUG POST VARS::";
         foreach ($this->request->post as $k => $v) {
             $p_msg .= $k . "=" . $v . "&";
         }
     }
     if (isset($this->request->get)) {
         $g_msg = "DEBUG GET VARS::";
         foreach ($this->request->get as $k => $v) {
             $g_msg .= $k . "=" . $v . "&";
         }
     }
     if ($this->config->get('pp_standard_debug')) {
         $this->log->write("PP_STANDARD :: PDT INIT <-- {$g_msg}");
     }
     if (!isset($this->request->get['tx']) || $this->config->get('pp_standard_pdt_token') == '') {
         $this->redirect(HTTPS_SERVER . 'index.php?route=checkout/success');
     }
     $this->load->language('payment/pp_standard');
     $this->load->library('encryption');
     $encryption = new Encryption($this->config->get('config_encryption'));
     if (isset($this->request->get['cm'])) {
         $order_id = $encryption->decrypt($this->request->get['cm']);
     } else {
         $order_id = 0;
     }
     $this->load->model('checkout/order');
     $this->order_info = $this->model_checkout_order->getOrder($order_id);
     if ($this->order_info) {
         if ($this->order_info['order_status_id'] != 0) {
             //if ($this->order_info['order_status_id'] == $this->config->get('pp_standard_order_status_id')) {
             $this->redirect(HTTPS_SERVER . 'index.php?route=checkout/success');
         }
     }
     // Paypal possible values for payment_status
     $success_status = array('Completed', 'Pending', 'In-Progress', 'Processed');
     $failed_status = array('Denied', 'Expired', 'Failed');
     // read the post from PayPal system and add 'cmd'
     $request = 'cmd=_notify-synch';
     $request .= '&tx=' . $this->request->get['tx'];
     $request .= '&at=' . $this->config->get('pp_standard_pdt_token');
     if (!$this->config->get('pp_standard_test')) {
         $url = 'https://www.paypal.com/cgi-bin/webscr';
     } else {
         $url = 'https://www.sandbox.paypal.com/cgi-bin/webscr';
     }
     if (ini_get('allow_url_fopen')) {
         $response = file_get_contents($url . '?' . $request);
     } else {
         $response = file_get_contents_curl($url . '?' . $request);
     }
     if ($this->config->get('pp_standard_debug')) {
         $this->log->write("PP_STANDARD :: PDT REQ  --> {$request}");
         $this->log->write("PP_STANDARD :: PDT RESP <-- " . str_replace("\n", "&", $response));
     }
     $resp_array = array();
     $verified = false;
     if ($response) {
         $lines = explode("\n", $response);
         if ($lines[0] == 'SUCCESS') {
             for ($i = 1; $i < count($lines) - 1; $i++) {
                 list($key, $val) = explode("=", $lines[$i]);
                 $resp_array[urldecode($key)] = urldecode($val);
             }
         }
     }
     if (isset($resp_array['memo'])) {
         $memo = $resp_array['memo'];
     } else {
         $memo = '';
     }
     if (!$this->validate($resp_array)) {
         if ($this->order_info['order_status_id'] == '0') {
             $this->model_checkout_order->confirm($order_id, $this->config->get('pp_standard_order_status_id_pending'), $memo . "\r\n\r\n" . $this->error);
         } elseif ($this->order_info['order_status_id'] != $this->config->get('pp_standard_order_status_id')) {
             $this->model_checkout_order->update($order_id, $this->config->get('pp_standard_order_status_id_pending'), $this->error, FALSE);
         }
         mail($this->config->get('config_email'), sprintf($this->language->get('text_attn_email'), $order_id), $this->error . "\r\n\r\n" . str_replace("&", "\n", $g_msg));
     }
     if (strcmp($lines[0], 'SUCCESS') == 0) {
         $verified = true;
     }
     $this->checkPaymentStatus($resp_array, $verified);
 }
开发者ID:shredslaughter,项目名称:shredslaughter,代码行数:86,代码来源:pp_standard.php


示例20: make_bitly_url

function make_bitly_url($url, $login, $appkey, $format = 'xml', $version = '2.0.1')
{
    _deprecated_function(__FUNCTION__, '6.0.0', __('Shortlinks feature in WooDojo.', 'woothemes'));
    //create the URL
    $bitly = 'http://api.bit.ly/shorten?version=' . $version . '&longUrl=' . urlencode($url) . '&login=' . $login . '&apiKey=' . $appkey . '&format=' . $format;
    //get the url
    //could also use cURL here
    $response = file_get_contents_curl($bitly);
    //parse depending on desired format
    if (strtolower($format) == 'json') {
        $json = @json_decode($response, true);
        return $json['results'][$url]['shortUrl'];
    } else {
        $xml = simplexml_load_string($response);
        return 'http://bit.ly/' . $xml->results->nodeKeyVal->hash;
    }
}
开发者ID:vanminh0910,项目名称:shangri-la,代码行数:17,代码来源:admin-functions.php



注:本文中的file_get_contents_curl函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP file_get_display_name函数代码示例发布时间:2022-05-15
下一篇:
PHP file_get_contents函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap