home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / .tmpuuid_is_null.phpt < prev    next >
Encoding:
Text File  |  2004-03-24  |  360 b   |  21 lines

  1. --TEST--
  2. UUID NULL check
  3. --SKIPIF--
  4. <?php if (!extension_loaded("uuid")) print "skip"; ?>
  5. --POST--
  6. --GET--
  7. --INI--
  8. --FILE--
  9. <?php
  10. echo (int)uuid_is_null("b691c99c-7fc5-11d8-9fa8-00065b896488")."\n";
  11. echo (int)uuid_is_null("878b258c-a9f1-467c-8e1d-47d79ca2c01b")."\n";
  12. echo (int)uuid_is_null("00000000-0000-0000-0000-000000000000")."\n";
  13. ?>
  14. --EXPECT--
  15. 0
  16. 0
  17. 1
  18.  
  19.  
  20.  
  21.