diff options
author | Stanislav Malyshev <stas@php.net> | 2015-01-25 01:21:53 -0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-01-28 10:15:11 -0800 |
commit | 14d6de97c5f54ec66dbb6b18ebe9cd0d279e4784 (patch) | |
tree | 561eea8ac7b15138bad5c2bfd93c724c03fea955 /ext/imap/tests/imap_fetchstructure_basic.phpt | |
parent | b7751630d1c50821146fc5732d05ede05ffdee5f (diff) | |
download | php-git-14d6de97c5f54ec66dbb6b18ebe9cd0d279e4784.tar.gz |
add imap
Diffstat (limited to 'ext/imap/tests/imap_fetchstructure_basic.phpt')
-rw-r--r-- | ext/imap/tests/imap_fetchstructure_basic.phpt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ext/imap/tests/imap_fetchstructure_basic.phpt b/ext/imap/tests/imap_fetchstructure_basic.phpt index 7ad4fc5622..dcf6148a1e 100644 --- a/ext/imap/tests/imap_fetchstructure_basic.phpt +++ b/ext/imap/tests/imap_fetchstructure_basic.phpt @@ -1,5 +1,5 @@ --TEST-- -imap_fetchstructure() function : basic functionality +imap_fetchstructure() function : basic functionality --CREDITS-- Olivier Doucet --SKIPIF-- @@ -34,12 +34,13 @@ var_dump($z->type); var_dump($z->encoding); var_dump($z->bytes); var_dump($z->lines); -var_dump(is_object($z->parameters)); +var_dump($z->ifparameters); +var_dump(is_object($z->parameters[0])); imap_close($stream_id); ?> --CLEAN-- -<?php +<?php require_once('clean.inc'); ?> --EXPECTF-- @@ -67,4 +68,5 @@ int(%d) int(%d) int(%d) int(%d) -bool(true)
\ No newline at end of file +int(1) +bool(true) |