123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520 |
- <?php
- /**
- * DOMPDF - PHP5 HTML to PDF renderer
- *
- * File: $RCSfile: functions.inc.php,v $
- * Created on: 2004-08-04
- *
- * Copyright (c) 2004 - Benj Carson <benjcarson@digitaljunkies.ca>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this library in the file LICENSE.LGPL; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- * 02111-1307 USA
- *
- * Alternatively, you may distribute this software under the terms of the
- * PHP License, version 3.0 or later. A copy of this license should have
- * been distributed with this file in the file LICENSE.PHP . If this is not
- * the case, you can obtain a copy at http://www.php.net/license/3_0.txt.
- *
- * The latest version of DOMPDF might be available at:
- * http://www.dompdf.com/
- *
- * @link http://www.dompdf.com/
- * @copyright 2004 Benj Carson
- * @author Benj Carson <benjcarson@digitaljunkies.ca>
- * @contributor Helmut Tischer <htischer@weihenstephan.org>
- * @package dompdf
- *
- * Changes
- * @contributor Helmut Tischer <htischer@weihenstephan.org>
- * @version 0.5.1.htischer.20090507
- * - trailing slash of base_path in build_url is no longer optional when
- * required. This allows paths not ending in a slash, e.g. on dynamically
- * created sites with page id in the url parameters.
- * @version 20090601
- * - fix windows paths
- * @version 20090610
- * - relax windows path syntax, use uniform path delimiter. Used for background images.
- */
- /* $Id: functions.inc.php 216 2010-03-11 22:49:18Z ryan.masten $ */
- /**
- * print_r wrapper for html/cli output
- *
- * Wraps print_r() output in < pre > tags if the current sapi is not
- * 'cli'. Returns the output string instead of displaying it if $return is
- * true.
- *
- * @param mixed $mixed variable or expression to display
- * @param bool $return
- *
- */
- if ( !function_exists("pre_r") ) {
- function pre_r($mixed, $return = false) {
- if ($return)
- return "<pre>" . print_r($mixed, true) . "</pre>";
- if ( php_sapi_name() !== "cli")
- echo ("<pre>");
- print_r($mixed);
- if ( php_sapi_name() !== "cli")
- echo("</pre>");
- else
- echo ("\n");
- flush();
- }
- }
- /**
- * var_dump wrapper for html/cli output
- *
- * Wraps var_dump() output in < pre > tags if the current sapi is not
- * 'cli'.
- *
- * @param mixed $mixed variable or expression to display.
- */
- if ( !function_exists("pre_var_dump") ) {
- function pre_var_dump($mixed) {
- if ( php_sapi_name() !== "cli")
- echo("<pre>");
- var_dump($mixed);
- if ( php_sapi_name() !== "cli")
- echo("</pre>");
- }
- }
- /**
- * builds a full url given a protocol, hostname, base path and url
- *
- * @param string $protocol
- * @param string $host
- * @param string $base_path
- * @param string $url
- * @return string
- *
- * Initially the trailing slash of $base_path was optional, and conditionally appended.
- * However on dynamically created sites, where the page is given as url parameter,
- * the base path might not end with an url.
- * Therefore do not append a slash, and **require** the $base_url to ending in a slash
- * when needed.
- * Vice versa, on using the local file system path of a file, make sure that the slash
- * is appended (o.k. also for Windows)
- */
- function build_url($protocol, $host, $base_path, $url) {
- if ( mb_strlen($url) == 0 ) {
- //return $protocol . $host . rtrim($base_path, "/\\") . "/";
- return $protocol . $host . $base_path;
- }
- // Is the url already fully qualified?
- if ( mb_strpos($url, "://") !== false )
- return $url;
- $ret = $protocol;
- if (!in_array(mb_strtolower($protocol), array("http://", "https://", "ftp://", "ftps://"))) {
- //On Windows local file, an abs path can begin also with a '\' or a drive letter and colon
- //drive: followed by a relative path would be a drive specific default folder.
- //not known in php app code, treat as abs path
- //($url[1] !== ':' || ($url[2]!=='\\' && $url[2]!=='/'))
- if ($url[0] !== '/' && (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN' || ($url[0] !== '\\' && $url[1] !== ':'))) {
- // For rel path and local acess we ignore the host, and run the path through realpath()
- $ret .= realpath($base_path).'/';
- }
- $ret .= $url;
- return $ret;
- }
- //remote urls with backslash in html/css are not really correct, but lets be genereous
- if ( $url[0] === '/' || $url[0] === '\\' ) {
- // Absolute path
- $ret .= $host . $url;
- } else {
- // Relative path
- //$base_path = $base_path !== "" ? rtrim($base_path, "/\\") . "/" : "";
- $ret .= $host . $base_path . $url;
- }
- return $ret;
- }
- /**
- * parse a full url or pathname and return an array(protocol, host, path,
- * file + query + fragment)
- *
- * @param string $url
- * @return array
- */
- function explode_url($url) {
- $protocol = "";
- $host = "";
- $path = "";
- $file = "";
- $arr = parse_url($url);
- if ( isset($arr["scheme"]) &&
- $arr["scheme"] !== "file" &&
- mb_strlen($arr["scheme"]) > 1 ) // Exclude windows drive letters...
- {
- $protocol = $arr["scheme"] . "://";
- if ( isset($arr["user"]) ) {
- $host .= $arr["user"];
- if ( isset($arr["pass"]) )
- $host .= "@" . $arr["pass"];
- $host .= ":";
- }
- if ( isset($arr["host"]) )
- $host .= $arr["host"];
- if ( isset($arr["port"]) )
- $host .= ":" . $arr["port"];
- if ( isset($arr["path"]) && $arr["path"] !== "" ) {
- // Do we have a trailing slash?
- if ( $arr["path"]{ mb_strlen($arr["path"]) - 1 } === "/" ) {
- $path = $arr["path"];
- $file = "";
- } else {
- $path = dirname($arr["path"]) . "/";
- $file = basename($arr["path"]);
- }
- }
- if ( isset($arr["query"]) )
- $file .= "?" . $arr["query"];
- if ( isset($arr["fragment"]) )
- $file .= "#" . $arr["fragment"];
- } else {
- $i = mb_strpos($url, "file://");
- if ( $i !== false)
- $url = mb_substr($url, $i + 7);
- $protocol = ""; // "file://"; ? why doesn't this work... It's because of
- // network filenames like //COMPU/SHARENAME
- $host = ""; // localhost, really
- $file = basename($url);
- $path = dirname($url);
- // Check that the path exists
- if ( $path !== false ) {
- $path .= '/';
- } else {
- // generate a url to access the file if no real path found.
- $protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https://' : 'http://';
- $host = isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : php_uname("n");
- if ( substr($arr["path"], 0, 1) === '/' ) {
- $path = dirname($arr["path"]);
- } else {
- $path = '/' . rtrim(dirname($_SERVER["SCRIPT_NAME"]), '/') . '/' . $arr["path"];
- }
- }
- }
- $ret = array($protocol, $host, $path, $file,
- "protocol" => $protocol,
- "host" => $host,
- "path" => $path,
- "file" => $file);
- return $ret;
- }
- /**
- * converts decimal numbers to roman numerals
- *
- * @param int $num
- * @return string
- */
- function dec2roman($num) {
- static $ones = array("", "i", "ii", "iii", "iv", "v",
- "vi", "vii", "viii", "ix");
- static $tens = array("", "x", "xx", "xxx", "xl", "l",
- "lx", "lxx", "lxxx", "xc");
- static $hund = array("", "c", "cc", "ccc", "cd", "d",
- "dc", "dcc", "dccc", "cm");
- static $thou = array("", "m", "mm", "mmm");
- if ( !is_numeric($num) )
- throw new DOMPDF_Exception("dec2roman() requires a numeric argument.");
- if ( $num > 4000 || $num < 0 )
- return "(out of range)";
- $num = strrev((string)$num);
- $ret = "";
- switch (mb_strlen($num)) {
- case 4:
- $ret .= $thou[$num[3]];
- case 3:
- $ret .= $hund[$num[2]];
- case 2:
- $ret .= $tens[$num[1]];
- case 1:
- $ret .= $ones[$num[0]];
- default:
- break;
- }
- return $ret;
- }
- /**
- * Determines whether $value is a percentage or not
- *
- * @param float $value
- * @return bool
- */
- function is_percent($value) { return false !== mb_strpos($value, "%"); }
- /**
- * mb_string compatibility
- */
- if ( !function_exists("mb_convert_encoding") ) {
- function mb_convert_encoding($data, $to_encoding, $from_encoding='UTF-8') {
- if (str_replace('-', '', strtolower($to_encoding)) == 'utf8') {
- return utf8_encode($data);
- } else {
- return utf8_decode($data);
- }
- }
- }
- if ( !function_exists("mb_detect_encoding") ) {
- function mb_detect_encoding($data, $encoding_list=array('iso-8859-1'), $strict=false) {
- return 'iso-8859-1';
- }
- }
- if ( !function_exists("mb_detect_order") ) {
- function mb_detect_order($encoding_list=array('iso-8859-1')) {
- return 'iso-8859-1';
- }
- }
- if ( !function_exists("mb_internal_encoding") ) {
- function mb_internal_encoding($encoding=NULL) {
- if (isset($encoding)) {
- return true;
- } else {
- return 'iso-8859-1';
- }
- }
- }
- if ( !function_exists("mb_strlen") ) {
- function mb_strlen($str, $encoding='iso-8859-1') {
- if (str_replace('-', '', strtolower($encoding)) == 'utf8') {
- return strlen(utf8_encode($data));
- } else {
- return strlen(utf8_decode($data));
- }
- }
- }
- if ( !function_exists("mb_strpos") ) {
- function mb_strpos($haystack, $needle, $offset = 0) {
- return strpos($haystack, $needle, $offset);
- }
- }
- if ( !function_exists("mb_strrpos") ) {
- function mb_strrpos($haystack, $needle, $offset = 0) {
- return strrpos($haystack, $needle, $offset);
- }
- }
- if ( !function_exists("mb_strtolower") ) {
- function mb_strtolower($str) {
- return strtolower($str);
- }
- }
- if ( !function_exists("mb_strtoupper") ) {
- function mb_strtoupper($str) {
- return strtoupper($str);
- }
- }
- if ( !function_exists("mb_substr") ) {
- function mb_substr($str, $start, $length=null, $encoding='iso-8859-1') {
- if ( is_null($length) )
- return substr($str, $start);
- else
- return substr($str, $start, $length);
- }
- }
- if ( !function_exists("mb_substr_count") ) {
- function mb_substr_count($haystack, $needle) {
- return substr_count($haystack, $needle);
- }
- }
- /**
- * Stores warnings in an array for display later
- *
- * This function allows warnings generated by the DomDocument parser
- * and CSS loader ({@link Stylesheet}) to be captured and displayed
- * later. Without this function, errors are displayed immediately and
- * PDF streaming is impossible.
- *
- * @see http://www.php.net/manual/en/function.set-error_handler.php
- *
- * @param int $errno
- * @param string $errstr
- * @param string $errfile
- * @param string $errline
- */
- function record_warnings($errno, $errstr, $errfile, $errline) {
- if ( !($errno & (E_WARNING | E_NOTICE | E_USER_NOTICE | E_USER_WARNING )) ) // Not a warning or notice
- throw new DOMPDF_Exception($errstr . " $errno");
- global $_dompdf_warnings;
- global $_dompdf_show_warnings;
- if ( $_dompdf_show_warnings )
- echo $errstr . "\n";
- $_dompdf_warnings[] = $errstr;
- }
- /**
- * Print a useful backtrace
- */
- function bt() {
- $bt = debug_backtrace();
- array_shift($bt); // remove actual bt() call
- echo "\n";
- $i = 0;
- foreach ($bt as $call) {
- $file = basename($call["file"]) . " (" . $call["line"] . ")";
- if ( isset($call["class"]) ) {
- $func = $call["class"] . "->" . $call["function"] . "()";
- } else {
- $func = $call["function"] . "()";
- }
- echo "#" . str_pad($i, 2, " ", STR_PAD_RIGHT) . ": " . str_pad($file.":", 42) . " $func\n";
- $i++;
- }
- echo "\n";
- }
- /**
- * Print debug messages
- *
- * @param string $type The type of debug messages to print
- */
- function dompdf_debug($type, $msg) {
- global $_DOMPDF_DEBUG_TYPES;
- global $_dompdf_show_warnings;
- global $_dompdf_debug;
- if ( isset($_DOMPDF_DEBUG_TYPES[$type]) && ($_dompdf_show_warnings || $_dompdf_debug) ) {
- $arr = debug_backtrace();
- echo basename($arr[0]["file"]) . " (" . $arr[0]["line"] ."): " . $arr[1]["function"] . ": ";
- pre_r($msg);
- }
- }
- /**
- * Dump memory usage
- */
- if ( !function_exists("print_memusage") ) {
- function print_memusage() {
- global $memusage;
- echo ("Memory Usage\n");
- $prev = 0;
- $initial = reset($memusage);
- echo (str_pad("Initial:", 40) . $initial . "\n\n");
- foreach ($memusage as $key=>$mem) {
- $mem -= $initial;
- echo (str_pad("$key:" , 40));
- echo (str_pad("$mem", 12) . "(diff: " . ($mem - $prev) . ")\n");
- $prev = $mem;
- }
- echo ("\n" . str_pad("Total:", 40) . memory_get_usage()) . "\n";
- }
- }
- /**
- * Initialize memory profiling code
- */
- if ( !function_exists("enable_mem_profile") ) {
- function enable_mem_profile() {
- global $memusage;
- $memusage = array("Startup" => memory_get_usage());
- register_shutdown_function("print_memusage");
- }
- }
- /**
- * Record the current memory usage
- *
- * @param string $location a meaningful location
- */
- if ( !function_exists("mark_memusage") ) {
- function mark_memusage($location) {
- global $memusage;
- if ( isset($memusage) )
- $memusage[$location] = memory_get_usage();
- }
- }
- /**
- * Find the current system temporary directory
- *
- * @link http://us.php.net/manual/en/function.sys-get-temp-dir.php#85261
- */
- if ( !function_exists('sys_get_temp_dir')) {
- function sys_get_temp_dir() {
- if (!empty($_ENV['TMP'])) { return realpath($_ENV['TMP']); }
- if (!empty($_ENV['TMPDIR'])) { return realpath( $_ENV['TMPDIR']); }
- if (!empty($_ENV['TEMP'])) { return realpath( $_ENV['TEMP']); }
- $tempfile=tempnam(uniqid(rand(),TRUE),'');
- if (file_exists($tempfile)) {
- unlink($tempfile);
- return realpath(dirname($tempfile));
- }
- }
- }
|