/[hr-web]/inc/util.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /inc/util.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (vendor branch)
Fri Apr 20 08:25:32 2001 UTC (23 years, 1 month ago) by dpavlin
Branch: pliva
CVS Tags: r0
Changes since 1.1: +0 -0 lines
initial import

1 <?php
2 function sort_name($a, $b) {
3 $x = strtolower($a["name"]);
4 $y = strtolower($b["name"]);
5 if ($x == $y) return 0;
6 return ($x > $y) ? 1 : -1;
7 }
8 ?>

  ViewVC Help
Powered by ViewVC 1.1.26