mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 08:52:08 +01:00
15 lines
251 B
PHP
15 lines
251 B
PHP
<?php
|
|
|
|
$curl = curl_init();
|
|
|
|
|
|
var_dump(get_class($curl));
|
|
var_dump(gettype($curl));
|
|
var_dump($curl);
|
|
|
|
curl_setopt($curl, CURLOPT_URL, 'https://www.baidu.com/');
|
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_exec($curl);
|
|
|
|
debug_zval_dump($curl);
|