mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
MFH: Fix skipif
This commit is contained in:
parent
0813510d1b
commit
6540730732
@ -2,6 +2,7 @@
|
||||
SOAP Interop Round2 base 005 (php/direct): echoString(utf-8)
|
||||
--SKIPIF--
|
||||
<?php require_once('skipif.inc'); ?>
|
||||
<?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?>
|
||||
--FILE--
|
||||
<?php
|
||||
$client = new SoapClient(NULL,array("location"=>"test://","uri"=>"http://soapinterop.org/","trace"=>1,"exceptions"=>0));
|
||||
|
@ -2,6 +2,7 @@
|
||||
SOAP Interop Round2 base 005 (soap/direct): echoString(utf-8)
|
||||
--SKIPIF--
|
||||
<?php require_once('skipif.inc'); ?>
|
||||
<?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?>
|
||||
--FILE--
|
||||
<?php
|
||||
$client = new SoapClient(NULL,array("location"=>"test://","uri"=>"http://soapinterop.org/","trace"=>1,"exceptions"=>0));
|
||||
|
@ -2,6 +2,7 @@
|
||||
SOAP Interop Round2 base 005 (php/wsdl): echoString(utf-8)
|
||||
--SKIPIF--
|
||||
<?php require_once('skipif.inc'); ?>
|
||||
<?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?>
|
||||
--INI--
|
||||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
|
@ -3,7 +3,7 @@ show information about extension
|
||||
--SKIPIF--
|
||||
<?php
|
||||
include "skipif.inc";
|
||||
if (!extension_loaded("reflection")) {
|
||||
if (!extension_loaded("reflection") || !extension_loaded("session")) {
|
||||
die("skip");
|
||||
}
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user