Project Euler Solutions by Ross Marks

<?php
/*****************************
 * ProjectEuler - Problem 17
 * By Ross Marks
 *****************************
 * If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are 3 + 3 + 5 + 4 + 4 = 19 letters used in total.
 * 
 * If all the numbers from 1 to 1000 (one thousand) inclusive were written out in words, how many letters would be used?
 * 
 * NOTE: Do not count spaces or hyphens. For example, 342 (three hundred and forty-two) contains 23 letters and 115 (one hundred and fifteen) contains 20 letters. The use of "and" when writing out numbers is in compliance with British usage.
 ****************************/

$word "";
$total_chars 0;

for(
$i 1$i <= 1000$i++){
  
$f = new NumberFormatter("gb"NumberFormatter::SPELLOUT);
  
$toadd $f->format($i);
  if(
strpos($toadd"hundred") !== false){ // is a hundred
    
if($i %100 != 0) { // not just "one hundred" - needs and
      
$toadd str_replace("hundred""hundred and"$toadd);
    }
  }
  
$toadd str_replace(" """$toadd);
  
$toadd str_replace("-"""$toadd);
  
$word .= str_replace(","""$toadd);
  
$total_chars += strlen($toadd);
}

//$total_chars = strlen($word);
echo "Letters: $total_chars"
?>