mirror of
https://github.com/php/php-src.git
synced 2026-04-26 09:28:21 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
21 lines
349 B
PHP
21 lines
349 B
PHP
--TEST--
|
|
Bug #80242 (imap_mail_compose() segfaults for multipart with rfc822)
|
|
--EXTENSIONS--
|
|
imap
|
|
--FILE--
|
|
<?php
|
|
$bodies = [[
|
|
'type' => TYPEMULTIPART,
|
|
], [
|
|
'type' => TYPETEXT,
|
|
'contents.data' => 'some text',
|
|
], [
|
|
'type' => TYPEMESSAGE,
|
|
'subtype' => 'RFC822',
|
|
]];
|
|
imap_mail_compose([], $bodies);
|
|
echo "done\n";
|
|
?>
|
|
--EXPECT--
|
|
done
|