Out with split(), in with explode()

This commit is contained in:
Tony Landis
2009-03-27 23:20:19 -06:00
parent ff9e25abcf
commit 87a8e0f92d
101 changed files with 639 additions and 639 deletions

View File

@@ -401,11 +401,11 @@ function search_excel($VAR, $construct, $type)
$pdf->AddPage();
# Determine the number of columns and width for each one...
$SetWidths = split(",",$width_list);
$SetWidths = explode(",",$width_list);
$pdf->SetWidths($SetWidths);
# Define the table heading
$TableHeading = split(",",$heading_list);
$TableHeading = explode(",",$heading_list);
# Define the Properties for the table heading cells:
# set the font:
@@ -573,7 +573,7 @@ function search_excel($VAR, $construct, $type)
}
$i++;
}
$ThisRow = split("::",$CurrRow);
$ThisRow = explode("::",$CurrRow);
# set the colors & fonts
if($BackAlt)