mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
39131219e8
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
17 lines
346 B
PHP
17 lines
346 B
PHP
--TEST--
|
|
Bug #65646 (re-enable CURLOPT_FOLLOWLOCATION with open_basedir or safe_mode): open_basedir disabled
|
|
--EXTENSIONS--
|
|
curl
|
|
--SKIPIF--
|
|
<?php
|
|
if (ini_get('open_basedir')) exit("skip open_basedir is set");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$ch = curl_init();
|
|
var_dump(curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true));
|
|
curl_close($ch);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|