Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
implemented Unicode File to HTML Text Converter exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
arthuralmeidap committed May 11, 2013
1 parent 58bd506 commit 44d9e2e
Showing 1 changed file with 27 additions and 0 deletions.
@@ -0,0 +1,27 @@
<?php

namespace TDDMicroExercises\PHP\UnicodeFileToHtmlTextConverter;

class UnicodeFileToHtmlTextConverter
{
private $_fullFilenameWithPath;

public function __construct($fullFilenameWithPath)
{
$this->_fullFilenameWithPath = $fullFilenameWithPath;
}

public function convertToHtml()
{
$unicodeFileStrem = fopen($this->_fullFilenameWithPath);
$html = '';

while ( $line = fgets($unicodeFileStrem))
{
$html .= htmlentities($line);
$html .= "<br />";
}

return $html;
}
}

0 comments on commit 44d9e2e

Please sign in to comment.