1--TEST-- 2SPL: Spl File Info test getInode 3--CREDITS-- 4Cesare D'Amico <cesare.damico@gruppovolta.it> 5Andrea Giorgini <agiorg@gmail.com> 6Filippo De Santis <fd@ideato.it> 7Daniel Londero <daniel.londero@gmail.com> 8Francesco Trucchia <ft@ideato.it> 9Jacopo Romei <jacopo@sviluppoagile.it> 10#Test Fest Cesena (Italy) on 2009-06-20 11--SKIPIF-- 12<?php 13if (PHP_OS_FAMILY === 'Windows') { die('SKIP Testing file inodes, not available for Windows'); } 14?> 15--FILE-- 16<?php 17 18//file 19$fileInfo = new SplFileInfo('not_existing'); 20var_dump($fileInfo->getInode()); 21?> 22--EXPECTF-- 23Fatal error: Uncaught RuntimeException: SplFileInfo::getInode(): stat failed for %s in %s 24Stack trace: 25#0 %s: SplFileInfo->getInode() 26#1 {main} 27 thrown in %s 28