Skip to content

taxList

A function which returns an array of Tax objects.

Syntax

value = taxList ( )

  • value - A Tax array result.

Example

Get a list of all Tax objects:

<?php
include 'taxes.php';
$all = taxList();
foreach ($all as $tax){
print "$tax->name\n";
}
?>