mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
15 lines
231 B
PHP
15 lines
231 B
PHP
--TEST--
|
|
Test curl_init() function with basic functionality
|
|
--CREDITS--
|
|
Jean-Marc Fontaine <jmf@durcommefaire.net>
|
|
--EXTENSIONS--
|
|
curl
|
|
--FILE--
|
|
<?php
|
|
$ch = curl_init();
|
|
var_dump($ch);
|
|
?>
|
|
--EXPECT--
|
|
object(CurlHandle)#1 (0) {
|
|
}
|