Newer
Older
<?php
/******************************************************************************
* Copyright (c) 2010 Jevon Wright and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Jevon Wright - initial API and implementation
* Jared Hancock - html table implementation
****************************************************************************/
/**
* Tries to convert the given HTML into a plain text format - best suited for
* e-mail display, etc.
*
* <p>In particular, it tries to maintain the following features:
* <ul>
* <li>Links are maintained, with the 'href' copied over
* <li>Information in the <head> is lost
* </ul>
*
* @param html the input HTML
* @return the HTML converted, as best as possible, to text
*/
function convert_html_to_text($html, $width=74) {
$html = fix_newlines($html);
$doc = new DOMDocument('1.0', 'utf-8');
if (strpos($html, '<?xml ') === false)
$html = '<?xml encoding="utf-8"?>'.$html; # <?php (4vim)
if (!@$doc->loadHTML($html))
return $html;
// Thanks, http://us3.php.net/manual/en/domdocument.loadhtml.php#95251
// dirty fix -- remove the inserted processing instruction
foreach ($doc->childNodes as $item) {
if ($item->nodeType == XML_PI_NODE) {
$doc->removeChild($item); // remove hack
break;
}
}
$elements = identify_node($doc);
// Add the default stylesheet
$elements->getRoot()->addStylesheet(
HtmlStylesheet::fromArray(array(
'html' => array('white-space' => 'pre'), # Don't wrap footnotes
'p' => array('margin-bottom' => '1em'),
'pre' => array('white-space' => 'pre'),
'u' => array('text-decoration' => 'underline'),
'a' => array('text-decoration' => 'underline'),
'b' => array('text-transform' => 'uppercase'),
'strong' => array('text-transform' => 'uppercase'),
'h4' => array('text-transform' => 'uppercase'),
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
))
);
$options = array();
if (is_object($elements))
$output = $elements->render($width, $options);
else
$output = $elements;
return trim($output);
}
/**
* Unify newlines; in particular, \r\n becomes \n, and
* then \r becomes \n. This means that all newlines (Unix, Windows, Mac)
* all become \ns.
*
* @param text text with any number of \r, \r\n and \n combinations
* @return the fixed text
*/
function fix_newlines($text) {
// replace \r\n to \n
// remove \rs
$text = str_replace("\r\n?", "\n", $text);
return $text;
}
function identify_node($node, $parent=null) {
if ($node instanceof DOMText)
return $node;
if ($node instanceof DOMDocument)
return identify_node($node->childNodes->item(1), $parent);
if ($node instanceof DOMDocumentType
|| $node instanceof DOMComment)
// ignore
return "";
$name = strtolower($node->nodeName);
// start whitespace
switch ($name) {
case "hr":
return new HtmlHrElement($node, $parent);
case "br":
return new HtmlBrElement($node, $parent);
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
case "style":
$parent->getRoot()->addStylesheet(new HtmlStylesheet($node));
case "title":
case "meta":
case "script":
case "link":
// ignore these tags
return "";
case "head":
case "html":
case "body":
case "div":
case "p":
case "pre":
return new HtmlBlockElement($node, $parent);
case "blockquote":
return new HtmlBlockquoteElement($node, $parent);
case "cite":
return new HtmlCiteElement($node, $parent);
case "h1":
case "h2":
case "h3":
case "h4":
case "h5":
case "h6":
return new HtmlHeadlineElement($node, $parent);
case "a":
return new HtmlAElement($node, $parent);
case "ol":
return new HtmlListElement($node, $parent);
case "ul":
return new HtmlUnorderedListElement($node, $parent);
case 'table':
return new HtmlTable($node, $parent);
case "img":
return new HtmlImgElement($node, $parent);
case "code":
return new HtmlCodeElement($node, $parent);
default:
// print out contents of unknown tags
//if ($node->hasChildNodes() && $node->childNodes->length == 1)
// return identify_node($node->childNodes->item(0), $parent);
return new HtmlInlineElement($node, $parent);
}
}
class HtmlInlineElement {
var $children = array();
var $style = false;
var $stylesheets = array();
var $ws = false;
function __construct($node, $parent) {
$this->parent = $parent;
$this->node = $node;
$this->traverse($node);
if ($node instanceof DomElement
&& ($style = $this->node->getAttribute('style')))
$this->style = new CssStyleRules($style);
}
function traverse($node) {
if ($node->hasChildNodes()) {
for ($i = 0; $i < $node->childNodes->length; $i++) {
$n = $node->childNodes->item($i);
$this->children[] = identify_node($n, $this);
}
}
}
function render($width, $options) {
$output = '';
$this->ws = $this->getStyle('white-space', 'normal');
// Direction
$dir = $this->node->getAttribute('dir');
// Ensure we have a value, but don't a control char unless direction
// is declared
$this->dir = $dir ?: 'left';
switch (strtolower($dir)) {
case 'ltr':
$output .= "\xE2\x80\x8E"; # LEFT-TO-RIGHT MARK
break;
case 'rtl':
$output .= "\xE2\x80\x8F"; # RIGHT-TO-LEFT MARK
break;
}
foreach ($this->children as $c) {
if ($c instanceof DOMText) {
// Collapse white-space
switch ($this->ws) {
case 'pre':
case 'pre-wrap':
break;
case 'nowrap':
case 'pre-line':
case 'normal':
default:
if ($after_block) $more = ltrim($more);
$more = preg_replace('/[ \r\n\t\f]+/mu', ' ', $more);
}
}
elseif ($c instanceof HtmlInlineElement) {
$more = $c->render($width, $options);
}
else {
$more = $c;
}
$after_block = ($c instanceof HtmlBlockElement);
if ($more instanceof PreFormattedText)
$output = new PreFormattedText($output . $more);
elseif (is_string($more))
$output .= $more;
}
switch ($this->getStyle('text-transform', 'none')) {
case 'uppercase':
$output = mb_strtoupper($output);
break;
}
switch ($this->getStyle('text-decoration', 'none')) {
case 'underline':
// Remove diacritics and underline chars which do not go below
// the baseline
if (class_exists('Normalizer'))
$output = Normalizer::normalize($output, Normalizer::FORM_D);
$output = preg_replace("/[a-fhik-or-xzA-PR-Z0-9#]/u", "$0\xcc\xb2", $output);
break;
}
if ($this->footnotes) {
$output .= "\n\n" . str_repeat('-', $width/2) . "\n";
foreach ($this->footnotes as $name=>$content)
$output .= sprintf("[%d] %s\n", $id++, $content);
return $output;
}
function getWeight() {
if (!isset($this->weight)) {
$this->weight = 0;
foreach ($this->children as $c) {
if ($c instanceof HtmlInlineElement)
$this->weight += $c->getWeight();
elseif ($c instanceof DomText)
$this->weight += mb_strwidth2($c->wholeText);
}
}
return $this->weight;
}
function getStyle($property, $default=null, $tag=false, $classes=false) {
if ($this->style && $this->style->has($property))
return $this->style->get($property, $default);
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
if ($tag === false)
$tag = $this->node->nodeName;
if ($classes === false) {
if ($c = $this->node->getAttribute('class'))
$classes = explode(' ', $c);
else
$classes = array();
}
if ($this->stylesheets) {
foreach ($this->stylesheets as $sheet)
if ($s = $sheet->get($tag, $classes))
return $s->get($property, $default);
}
elseif ($this->parent) {
return $this->getRoot()->getStyle($property, $default, $tag, $classes);
}
else {
return $default;
}
}
function getRoot() {
if (!$this->parent)
return $this;
elseif (!isset($this->root))
$this->root = $this->parent->getRoot();
return $this->root;
}
function addStylesheet(&$s) {
$this->stylesheets[] = $s;
}
function addFootNote($name, $content) {
$this->footnotes[$content] = $content;
return count($this->footnotes);
}
class HtmlBlockElement extends HtmlInlineElement {
var $min_width = false;
function render($width, $options) {
// Allow room for the border.
// TODO: Consider left-right padding and margin
$bw = $this->getStyle('border-width', 0);
if ($bw)
$width -= 4;
$output = parent::render($width, $options);
if ($output instanceof PreFormattedText)
// TODO: Consider CSS rules
return new PreFormattedText("\n" . $output);
$output = trim($output);
return "";
// Wordwrap the content to the width
switch ($this->ws) {
case 'nowrap':
case 'pre':
break;
case 'pre-line':
case 'pre-wrap':
case 'normal':
default:
$output = mb_wordwrap($output, $width, "\n", true);
}
// Apply stylesheet styles
// TODO: Padding
// Justification
static $aligns = array(
'left' => STR_PAD_RIGHT,
'right' => STR_PAD_LEFT,
'center' => STR_PAD_BOTH,
);
$talign = $this->getStyle('text-align', 'none');
if (isset($aligns[$talign])) {
// Explode lines, justify, implode again
$output = array_map(function($l) use ($talign, $aligns, $width) {
return mb_str_pad($l, $width, ' ', $aligns[$talign]);
}, explode("\n", $output)
);
$output = implode("\n", $output);
}
// Border
if ($bw)
$output = self::borderize($output, $width);
// Margin
$mb = $this->getStyle('margin-bottom', 0);
$output .= str_repeat("\n", (int)$mb);
// Add leading newline if not preceed by <br/>
if (!($pn = $this->node->previousSibling)
|| !in_array(strtolower($pn->nodeName), array('br','hr'))
) {
$output = "\n" . $output;
}
return $output;
}
function borderize($what, $width) {
$output = ',-'.str_repeat('-', $width)."-.\n";
foreach (explode("\n", $what) as $l)
$output .= '| '.mb_str_pad($l, $width)." |\n";
$output .= '`-'.str_repeat('-', $width)."-'\n";
return $output;
}
function getMinWidth() {
if ($this->min_width === false) {
foreach ($this->children as $c) {
if ($c instanceof HtmlBlockElement)
$this->min_width = max($c->getMinWidth(), $this->min_width);
elseif ($c instanceof DomText)
$this->min_width = max(max(array_map('mb_strwidth2',
explode(' ', $c->wholeText))), $this->min_width);
}
}
return $this->min_width;
}
}
class HtmlBrElement extends HtmlBlockElement {
function render($width, $options) {
return "\n";
}
}
class HtmlHrElement extends HtmlBlockElement {
function render($width, $options) {
return "\n".str_repeat("\xE2\x94\x80", $width)."\n";
}
function getWeight() { return 1; }
function getMinWidth() { return 0; }
}
class HtmlHeadlineElement extends HtmlBlockElement {
function render($width, $options) {
$line = false;
if (!($headline = parent::render($width, $options)))
return "";
switch ($this->node->nodeName) {
case 'h1':
$line = "\xE2\x95\x90"; # U+2505
break;
$line = "\xE2\x94\x81"; # U+2501
break;
case 'h3':
$line = "\xE2\x94\x80"; # U+2500
default:
return $headline;
$length = max(array_map('mb_strwidth2', explode("\n", $headline)));
$headline .= "\n" . str_repeat($line, $length) . "\n";
return $headline;
}
}
class HtmlBlockquoteElement extends HtmlBlockElement {
function render($width, $options) {
return str_replace("\n", "\n> ",
rtrim(parent::render($width-2, $options)))."\n";
}
function getWeight() { return parent::getWeight()+2; }
}
class HtmlCiteElement extends HtmlBlockElement {
function render($width, $options) {
$lines = explode("\n", ltrim(parent::render($width-3, $options)));
$lines[0] = "-- " . $lines[0];
// Right justification
foreach ($lines as &$l)
$l = mb_str_pad($l, $width, " ", STR_PAD_LEFT);
unset($l);
return implode("\n", $lines);
}
}
class HtmlImgElement extends HtmlInlineElement {
function render($width, $options) {
// Images are returned as [alt: title]
$title = $this->node->getAttribute("title");
if ($title)
$title = ": $title";
$alt = $this->node->getAttribute("alt");
return mb_strwidth2($this->node->getAttribute("alt")) + 8;
}
class HtmlAElement extends HtmlInlineElement {
function render($width, $options) {
// links are returned in [text](link) format
$output = parent::render($width, $options);
$href = $this->node->getAttribute("href");
if ($href == null) {
// it doesn't link anywhere
if ($this->node->getAttribute("name") != null) {
$output = "[$output]";
}
} elseif (strpos($href, 'mailto:') === 0) {
$href = substr($href, 7);
$output = (($href != $output) ? "$href " : '') . "<$output>";
} elseif (mb_strwidth2($href) > $width / 2) {
if (mb_strwidth2($output) > $width / 2) {
// Parse URL and use relative path part
if ($PU = parse_url($output))
$output = $PU['host'] . $PU['path'];
}
$id = $this->getRoot()->addFootnote($output, $href);
$output = "[$output][$id]";
} elseif ($href != $output) {
$output = "[$output]($href)";
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
}
return $output;
}
function getWeight() { return parent::getWeight() + 4; }
}
class HtmlListElement extends HtmlBlockElement {
var $marker = " %d. ";
function render($width, $options) {
$options['marker'] = $this->marker;
return parent::render($width, $options);
}
function traverse($node, $number=1) {
if ($node instanceof DOMText)
return;
switch (strtolower($node->nodeName)) {
case "li":
$this->children[] = new HtmlListItem($node, $this->parent, $number++);
return;
// Anything else is ignored
}
for ($i = 0; $i < $node->childNodes->length; $i++)
$this->traverse($node->childNodes->item($i), $number);
}
}
class HtmlUnorderedListElement extends HtmlListElement {
var $marker = " * ";
}
class HtmlListItem extends HtmlBlockElement {
function HtmlListItem($node, $parent, $number) {
parent::__construct($node, $parent);
$this->number = $number;
}
function render($width, $options) {
$prefix = sprintf($options['marker'], $this->number);
$lines = explode("\n", trim(parent::render($width-mb_strwidth2($prefix), $options)));
$lines[0] = $prefix . $lines[0];
return new PreFormattedText(
implode("\n".str_repeat(" ", mb_strwidth2($prefix)), $lines)."\n");
}
}
class HtmlCodeElement extends HtmlInlineElement {
function render($width, $options) {
$content = parent::render($width-2, $options);
if (strpos($content, "\n"))
return "```\n".trim($content)."\n```\n";
else
return "`$content`";
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
}
}
class HtmlTable extends HtmlBlockElement {
function __construct($node, $parent) {
$this->body = array();
$this->foot = array();
$this->rows = &$this->body;
parent::__construct($node, $parent);
}
function getMinWidth() {
if (false === $this->min_width) {
foreach ($this->rows as $r)
foreach ($r as $cell)
$this->min_width = max($this->min_width, $cell->getMinWidth());
}
return $this->min_width + 4;
}
function getWeight() {
if (!isset($this->weight)) {
$this->weight = 0;
foreach ($this->rows as $r)
foreach ($r as $cell)
$this->weight += $cell->getWeight();
}
return $this->weight;
}
function traverse($node) {
if ($node instanceof DOMText)
return;
$name = strtolower($node->nodeName);
switch ($name) {
case 'th':
case 'td':
$this->row[] = new HtmlTableCell($node, $this->parent);
// Don't descend into this node. It should be handled by the
// HtmlTableCell::traverse
return;
case 'tr':
unset($this->row);
$this->row = array();
$this->rows[] = &$this->row;
break;
case 'caption':
$this->caption = new HtmlBlockElement($node, $this->parent);
return;
case 'tbody':
case 'thead':
unset($this->rows);
$this->rows = &$this->body;
break;
case 'tfoot':
unset($this->rows);
$this->rows = &$this->foot;
break;
}
for ($i = 0; $i < $node->childNodes->length; $i++)
$this->traverse($node->childNodes->item($i));
}
/**
* Ensure that no column is below its minimum width. Each column that is
* below its minimum will borrow from a column that is above its
* minimum. The process will continue until all columns are above their
* minimums or all columns are below their minimums.
*/
function _fixupWidths(&$widths, $mins) {
foreach ($widths as $i=>$w) {
if ($w < $mins[$i]) {
// Borrow from another column -- the furthest one away from
// its minimum width
$best = 0; $bestidx = false;
foreach ($widths as $j=>$w) {
if ($i == $j)
continue;
if ($w > $mins[$j]) {
if ($w - $mins[$j] > $best) {
$best = $w - $mins[$j];
$bestidx = $j;
}
}
}
if ($bestidx !== false) {
$widths[$bestidx]--;
$widths[$i]++;
return $this->_fixupWidths($widths, $mins);
}
}
}
}
function render($width, $options) {
$cols = 0;
$rows = array_merge($this->body, $this->foot);
# Count the number of columns
foreach ($rows as $r)
$cols = max($cols, count($r));
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
# Find the largest cells in all columns
$weights = $mins = array_fill(0, $cols, 0);
foreach ($rows as $r) {
$i = 0;
foreach ($r as $cell) {
for ($j=0; $j<$cell->cols; $j++) {
$weights[$i] = max($weights[$i], $cell->getWeight());
$mins[$i] = max($mins[$i], $cell->getMinWidth());
}
$i += $cell->cols;
}
}
# Subtract internal padding and borders from the available width
$inner_width = $width - $cols*3 - 1;
# Optimal case, where the preferred width of all the columns is
# doable
if (array_sum($weights) <= $inner_width)
$widths = $weights;
# Worst case, where the minimum size of the columns exceeds the
# available width
elseif (array_sum($mins) > $inner_width)
$widths = $mins;
# Most likely case, where the table can be fit into the available
# width
else {
$total = array_sum($weights);
$widths = array();
foreach ($weights as $c)
$widths[] = (int)($inner_width * $c / $total);
$this->_fixupWidths($widths, $mins);
}
$outer_width = array_sum($widths) + $cols*3 + 1;
$contents = array();
$heights = array();
foreach ($rows as $y=>$r) {
$heights[$y] = 0;
for ($x = 0, $i = 0; $x < $cols; $i++) {
if (!isset($r[$i])) {
// No cell at the end of this row
$contents[$y][$i][] = "";
break;
}
$cell = $r[$i];
# Compute the effective cell width for spanned columns
# Add extra space for the unneeded border padding for
# spanned columns
$cwidth = ($cell->cols - 1) * 3;
for ($j = 0; $j < $cell->cols; $j++)
$cwidth += $widths[$x+$j];
# Stash the computed width so it doesn't need to be
# recomputed again below
$cell->width = $cwidth;
$data = explode("\n", $cell->render($cwidth, $options));
$heights[$y] = max(count($data), $heights[$y]);
$contents[$y][$i] = &$data;
$x += $cell->cols;
}
}
# Build the header
$header = "";
for ($i = 0; $i < $cols; $i++)
$header .= "+-" . str_repeat("-", $widths[$i]) . "-";
$header .= "+";
# Emit the rows
$output = "\n";
if (isset($this->caption)) {
$this->caption = $this->caption->render($outer_width, $options);
}
foreach ($rows as $y=>$r) {
$output .= $header . "\n";
for ($x = 0, $k = 0; $k < $heights[$y]; $k++) {
$output .= "|";
foreach ($r as $x=>$cell) {
$content = (isset($contents[$y][$x][$k]))
? $contents[$y][$x][$k] : "";
$output .= " ".mb_str_pad($content, $cell->width)." |";
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
$x += $cell->cols;
}
$output .= "\n";
}
}
$output .= $header . "\n";
return new PreFormattedText($output);
}
}
class HtmlTableCell extends HtmlBlockElement {
function __construct($node, $parent) {
parent::__construct($node, $parent);
$this->cols = $node->getAttribute('colspan');
$this->rows = $node->getAttribute('rowspan');
if (!$this->cols) $this->cols = 1;
if (!$this->rows) $this->rows = 1;
}
function render($width, $options) {
return ltrim(parent::render($width, $options));
}
function getWeight() {
return parent::getWeight() / ($this->cols * $this->rows);
}
function getMinWidth() {
return max(4, parent::getMinWidth() / $this->cols);
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
}
}
class HtmlStylesheet {
function __construct($node=null) {
if (!$node) return;
// We really only care about tags and classes
$rules = array();
preg_match_all('/([^{]+)\{((\s*[\w-]+:\s*[^;}]+;?)+)\s*\}/m',
$node->textContent, $rules, PREG_SET_ORDER);
$this->rules = array();
$m = array();
foreach ($rules as $r) {
list(,$selector,$props) = $r;
$props = new CssStyleRules($props);
foreach (explode(',', $selector) as $s) {
// Only allow tag and class selectors
if (preg_match('/^([\w-]+)?(\.[\w_-]+)?$/m', trim($s), $m))
// XXX: Technically, a selector could be listed more
// than once, and the rules should be aggregated.
$this->rules[$m[0]] = &$props;
}
unset($props);
}
}
function get($tag, $classes=array()) {
// Honor CSS specificity
foreach ($this->rules as $selector=>$rules)
foreach ($classes as $c)
if ($selector == "$tag.$c" || $selector == ".$c")
return $rules;
foreach ($this->rules as $selector=>$rules)
if ($selector == $tag)
return $rules;
}
static function fromArray($selectors) {
$self = new HtmlStylesheet();
foreach ($selectors as $s=>$rules)
$self->rules[$s] = CssStyleRules::fromArray($rules);
return $self;
}
}
class CssStyleRules {
var $rules = array();
function __construct($rules) {
foreach (explode(';', $rules) as $r) {
if (strpos($r, ':') === false)
continue;
list($prop, $val) = explode(':', $r);
$this->rules[trim($prop)] = trim($val);
// TODO: Explode compact rules, like 'border', 'margin', etc.
}
}
function has($prop) {
return isset($this->rules[$prop]);
}
function get($prop, $default=0.0) {
if (!isset($this->rules[$prop]))
return $default;
else
$val = $this->rules[$prop];
if (is_string($val)) {
switch (true) {
case is_float($default):
$simple = floatval($val);
$units = substr($val, -2);
// Cache the conversion
$val = $this->rules[$prop] = self::convert($simple, $units);
}
}
return $val;
}
static function convert($value, $units) {
if ($value === null)
return $value;
// Converts common CSS units to units of characters
switch ($units) {
case 'px':
return $value / 20.0;
case 'pt':
return $value / 12.0;
case 'em':
default:
return $value;
}
}
static function fromArray($rules) {
$self = new CssStyleRules('');
$self->rules = &$rules;
return $self;
}
}
class PreFormattedText {
function __construct($text) {
$this->text = $text;
}
function __toString() {
return $this->text;
}
}
if (!function_exists('mb_strwidth')) {
function mb_strwidth($string) {
return mb_strlen($string);
}
}
function mb_strwidth2($string) {
$junk = array();
return mb_strwidth($string) - preg_match_all("/\p{M}/u", $string, $junk);
}
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
// Thanks http://www.php.net/manual/en/function.wordwrap.php#107570
// @see http://www.tads.org/t3doc/doc/htmltads/linebrk.htm
// for some more line breaking characters and rules
// XXX: This does not wrap Chinese characters well
// @see http://xml.ascc.net/en/utf-8/faq/zhl10n-faq-xsl.html#qb1
// for some more rules concerning Chinese chars
function mb_wordwrap($string, $width=75, $break="\n", $cut=false) {
if ($cut) {
// Match anything 1 to $width chars long followed by whitespace or EOS,
// otherwise match anything $width chars long
$search = '/(.{1,'.$width.'})(?:\s|$|(\p{Ps}))|(.{'.$width.'})/uS';
$replace = '$1$3'.$break.'$2';
} else {
// Anchor the beginning of the pattern with a lookahead
// to avoid crazy backtracking when words are longer than $width
$pattern = '/(?=[\s\p{Ps}])(.{1,'.$width.'})(?:\s|$|(\p{Ps}))/uS';
$replace = '$1'.$break.'$2';
}
return rtrim(preg_replace($search, $replace, $string), $break);
}
// Thanks http://www.php.net/manual/en/ref.mbstring.php#90611
function mb_str_pad($input, $pad_length, $pad_string=" ",
$pad_style=STR_PAD_RIGHT) {
return str_pad($input,
strlen($input)-mb_strwidth($input)+$pad_length, $pad_string,
$pad_style);
}
// Enable use of html2text from command line
// The syntax is the following: php html2text.php file.html
do {
if (PHP_SAPI != 'cli') break;
if (empty ($_SERVER['argc']) || $_SERVER['argc'] < 2) break;
if (empty ($_SERVER['PHP_SELF']) || FALSE === strpos ($_SERVER['PHP_SELF'], 'html2text.php') ) break;
$file = $argv[1];
$width = 74;
if (isset($argv[2]))
$width = (int) $argv[2];
elseif (isset($ENV['COLUMNS']))
$width = $ENV['COLUMNS'];
require_once(dirname(__file__).'/../bootstrap.php');
Bootstrap::i18n_prep();
echo convert_html_to_text (file_get_contents ($file), $width);
} while (0);