MFH: Fix skipif

This commit is contained in:
Arnaud Le Blanc 2009-05-20 10:08:32 +00:00
parent 0813510d1b
commit 6540730732
4 changed files with 4 additions and 1 deletions

View File

@ -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));

View File

@ -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));

View File

@ -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--

View 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");
}
?>