Lines Matching refs:stat
12 stat with the corresponding named key values of
13 the same stat.
14 compare_stats() : Compares two stat values
525 function compare_self_stat( array $stat );
527 Compares the each of the first 13 values of the stat array with the
528 corresponding next 13 values of the same stat for equality
529 $stat = stat array
533 function compare_self_stat( array $stat )
538 // named keys present in a stat
546 // compare the values in the stat, which are accessed using numeric key with
550 if($stat[$key] != $stat[$str_key]) {
551 echo "Error: stat[$key] doesn't match with stat[$str_key]\n";
561 // dump the stat array so that its easy to figure out the error
563 echo "\n Dumping stat array ...\n";
564 var_dump($stat);
575 Compares two stat values, stat value should be obtained by stat/lstat
576 $stat1 = first stat array
577 $stat2 = second stat array
596 // dump the stat if requested
604 // compare values of given key from each stat array
646 // dump the stat array so that easy to figure out the error
648 echo "\n Dumping stat array 1...\n";
650 echo "\n Dumping stat array 2...\n";