From:             olivier at oxeva dot fr
Operating system: all
PHP version:      5.3SVN-2009-09-22 (SVN)
PHP Bug Type:     IMAP related
Bug description:  imap_listscan function missing

Description:
------------
The PHP function imap_listscan() is missing:

Fatal error: Call to undefined function imap_listscan() in /***/test.php
on line 3


The function exists in documentation:
http://fr.php.net/imap_listscan

The function exists in sourcecode:
http://svn.php.net/viewvc/php/php-src/branches/PHP_5_3/ext/imap/php_imap.c?view=markup
(line 1862)






Reproduce code:
---------------
<?php

$stream_id = imap_open('localhost', 'm...@me.com', 'b...@boum.com') or 
        die("Cannot connect to mailbox $default_mailbox: " . imap_last_error());

imap_listscan($stream_id,$default_mailbox,'INBOX');

imap_close($stream_id);


Expected result:
----------------
Function is at least found :)

Actual result:
--------------
Fatal error: Call to undefined function imap_listscan() in
/***/imap_listscan_basic.php on line 3

-- 
Edit bug report at http://bugs.php.net/?id=49630&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=49630&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=49630&r=trysnapshot53
Try a snapshot (PHP 6.0):            
http://bugs.php.net/fix.php?id=49630&r=trysnapshot60
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=49630&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=49630&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=49630&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=49630&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=49630&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=49630&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=49630&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=49630&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=49630&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=49630&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=49630&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=49630&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=49630&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=49630&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=49630&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=49630&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=49630&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=49630&r=mysqlcfg

Reply via email to