rsfilter.inc.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * @version V4.50 6 July 2004 (c) 2000-2005 John Lim (jlim@natsoft.com.my). All rights reserved.
  4. * Released under both BSD license and Lesser GPL library license.
  5. * Whenever there is any discrepancy between the two licenses,
  6. * the BSD license will take precedence.
  7. *
  8. * Set tabs to 4 for best viewing.
  9. *
  10. * Latest version is available at http://php.weblogs.com
  11. *
  12. * Requires PHP4.01pl2 or later because it uses include_once
  13. */
  14. /*
  15. Filter all fields and all rows in a recordset and returns the
  16. processed recordset. We scroll to the beginning of the new recordset
  17. after processing.
  18. We pass a recordset and function name to RSFilter($rs,'rowfunc');
  19. and the function will be called multiple times, once
  20. for each row in the recordset. The function will be passed
  21. an array containing one row repeatedly.
  22. Example:
  23. // ucwords() every element in the recordset
  24. function do_ucwords(&$arr,$rs)
  25. {
  26. foreach($arr as $k => $v) {
  27. $arr[$k] = ucwords($v);
  28. }
  29. }
  30. $rs = RSFilter($rs,'do_ucwords');
  31. */
  32. function &RSFilter($rs,$fn)
  33. {
  34. if ($rs->databaseType != 'array') {
  35. if (!$rs->connection) return false;
  36. $rs = &$rs->connection->_rs2rs($rs);
  37. }
  38. $rows = $rs->RecordCount();
  39. for ($i=0; $i < $rows; $i++) {
  40. if (is_array ($fn)) {
  41. $obj = $fn[0];
  42. $method = $fn[1];
  43. $obj->$method ($rs->_array[$i],$rs);
  44. } else {
  45. $fn($rs->_array[$i],$rs);
  46. }
  47. }
  48. if (!$rs->EOF) {
  49. $rs->_currentRow = 0;
  50. $rs->fields = $rs->_array[0];
  51. }
  52. return $rs;
  53. }
  54. ?>