» Javascript equivalent for PHP's echo

399 PHP equivalents

PHP to Javascript Project: php.js

php.jsThis article is part of the 'Porting PHP to Javascript' Project, which aims to decrease the gap between developing for PHP & Javascript.

A lot of people are familiar with PHP's functions, and though Javascript functions are often quite similar, some functions may be missing or addressed differently. The Javascript implementations should be as compliant with the PHP versions as possible, a good indication is that the PHP function manual could also apply to the Javascript version.

Porting crucial PHP functions to Javascript can be fun & useful. Currently some PHP functions have been added, but readers are encouraged to contribute and improve functions by adding comments. Eventually the goal is to save all the functions in one php.js file and make it publicly available for your coding pleasure.

If you choose to contribute, let me know how you want to be credited in the function's comments. You may also want to subscribe to RSS so you receive updates whenever new functions are posted.

This is a Javascript version of the PHP function: echo.

I have moved out PHP.JS to it's own site. For info & reactions on comments please goto phpjs.org

PHP echo

Description

echo - Output one or more strings

void echo( string arg1 [, string ...] )

echo() is not actually a function (it is a language construct), so you are not required to use parentheses with it. echo() (unlike some other language constructs) does not behave like a function, so it cannot always be used in the context of a function. Additionally, if you want to pass more than one parameter to echo(), the parameters must not be enclosed within parentheses.

Parameters

  • arg1

    The parameter to output.

Return Values

No value is returned.

See Also

Javascript echo

Source

This is the main source of the Javascript version of PHP's echo

function echo ( ) {
    // http://kevin.vanzonneveld.net
    // +   original by: Philip Peterson
    // +   improved by: echo is bad
    // +   improved by: Nate
    // +    revised by: Der Simon (http://innerdom.sourceforge.net/)
    // +   improved by: Brett Zamir (http://brett-zamir.me)
    // +   bugfixed by: Eugene Bulkin (http://doubleaw.com/)
    // +   input by: JB
    // +   improved by: Brett Zamir (http://brett-zamir.me)
    // %        note 1: If browsers start to support DOM Level 3 Load and Save (parsing/serializing),
    // %        note 1: we wouldn't need any such long code (even most of the code below). See
    // %        note 1: link below for a cross-browser implementation in JavaScript. HTML5 might
    // %        note 1: possibly support DOMParser, but that is not presently a standard.
    // %        note 2: Although innerHTML is widely used and may become standard as of HTML5, it is also not ideal for
    // %        note 2: use with a temporary holder before appending to the DOM (as is our last resort below),
    // %        note 2: since it may not work in an XML context
    // %        note 3: Using innerHTML to directly add to the BODY is very dangerous because it will
    // %        note 3: break all pre-existing references to HTMLElements.
    // *     example 1: echo('<div><p>abc</p><p>abc</p></div>');
    // *     returns 1: undefined
 
    var arg = '', argc = arguments.length, argv = arguments, i = 0;
    var win = this.window;
    var d = win.document;
    var ns_xhtml = 'http://www.w3.org/1999/xhtml';
    var ns_xul = 'http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul'; // If we're in a XUL context
 
    var holder;
 
    var stringToDOM = function (str, parent, ns, container) {
        var extraNSs = '';
        if (ns === ns_xul) {
            extraNSs = ' xmlns:html="'+ns_xhtml+'"';
        }
        var stringContainer = '<'+container+' xmlns="'+ns+'"'+extraNSs+'>'+str+'</'+container+'>';
        if (win.DOMImplementationLS &&
            win.DOMImplementationLS.createLSInput &&
            win.DOMImplementationLS.createLSParser) { // Follows the DOM 3 Load and Save standard, but not
            // implemented in browsers at present; HTML5 is to standardize on innerHTML, but not for XML (though
            // possibly will also standardize with DOMParser); in the meantime, to ensure fullest browser support, could
            // attach http://svn2.assembla.com/svn/brettz9/DOMToString/DOM3.js (see http://svn2.assembla.com/svn/brettz9/DOMToString/DOM3.xhtml for a simple test file)
            var lsInput = DOMImplementationLS.createLSInput();
            // If we're in XHTML, we'll try to allow the XHTML namespace to be available by default
            lsInput.stringData = stringContainer;
            var lsParser = DOMImplementationLS.createLSParser(1, null); // synchronous, no schema type
            return lsParser.parse(lsInput).firstChild;
        }
        else if (win.DOMParser) {
            // If we're in XHTML, we'll try to allow the XHTML namespace to be available by default
            return new DOMParser().parseFromString(stringContainer, 'text/xml').documentElement.firstChild;
        }
        else if (win.ActiveXObject) { // We don't bother with a holder in Explorer as it doesn't support namespaces
            var d = new ActiveXObject('MSXML2.DOMDocument');
            d.loadXML(str);
            return d.documentElement;
        }
        /*else if (win.XMLHttpRequest) { // Supposed to work in older Safari
            var req = new win.XMLHttpRequest;
            req.open('GET', 'data:application/xml;charset=utf-8,'+encodeURIComponent(str), false);
            if (req.overrideMimeType) {
                req.overrideMimeType('application/xml');
            }
            req.send(null);
            return req.responseXML;
        }*/
        else { // Document fragment did not work with innerHTML, so we create a temporary element holder
            // If we're in XHTML, we'll try to allow the XHTML namespace to be available by default
            //if (d.createElementNS && (d.contentType && d.contentType !== 'text/html')) { // Don't create namespaced elements if we're being served as HTML (currently only Mozilla supports this detection in true XHTML-supporting browsers, but Safari and Opera should work with the above DOMParser anyways, and IE doesn't support createElementNS anyways)
            if (d.createElementNS &&  // Browser supports the method
                d.documentElement.namespaceURI && (d.documentElement.namespaceURI !== null || // We can use if the document is using a namespace
                d.documentElement.nodeName.toLowerCase() !== 'html' || // We know it's not HTML4 or less, if the tag is not HTML (even if the root namespace is null)
                (d.contentType && d.contentType !== 'text/html') // We know it's not regular HTML4 or less if this is Mozilla (only browser supporting the attribute) and the content type is something other than text/html; other HTML5 roots (like svg) still have a namespace
            )) { // Don't create namespaced elements if we're being served as HTML (currently only Mozilla supports this detection in true XHTML-supporting browsers, but Safari and Opera should work with the above DOMParser anyways, and IE doesn't support createElementNS anyways); last test is for the sake of being in a pure XML document
                holder = d.createElementNS(ns, container);
            }
            else {
                holder = d.createElement(container); // Document fragment did not work with innerHTML
            }
            holder.innerHTML = str;
            while (holder.firstChild) {
                parent.appendChild(holder.firstChild);
            }
            return false;
        }
        // throw 'Your browser does not support DOM parsing as required by echo()';
    };
 
 
    var ieFix = function (node) {
        if (node.nodeType === 1) {
            var newNode = d.createElement(node.nodeName);
            var i, len;
            if (node.attributes && node.attributes.length > 0) {
                for (i = 0, len = node.attributes.length; i < len; i++) {
                    newNode.setAttribute(node.attributes[i].nodeName, node.getAttribute(node.attributes[i].nodeName));
                }
            }
            if (node.childNodes && node.childNodes.length > 0) {
                for (i = 0, len = node.childNodes.length; i < len; i++) {
                    newNode.appendChild(ieFix(node.childNodes[i]));
                }
            }
            return newNode;
        }
        else {
            return d.createTextNode(node.nodeValue);
        }
    };
 
    for (i = 0; i < argc; i++ ) {
        arg = argv[i];
        if (this.php_js && this.php_js.ini && this.php_js.ini['phpjs.echo_embedded_vars']) {
            arg = arg.replace(/(.?)\{\$(.*?)\}/g, function (s, m1, m2) { 
                // We assume for now that embedded variables do not have dollar sign; to add a dollar sign, you currently must use {$$var} (We might change this, however.)
                // Doesn't cover all cases yet: see http://php.net/manual/en/language.types.string.php#language.types.string.syntax.double
                if (m1 !== '\\') {
                    return m1+eval(m2);
                }
                else {
                    return s;
                }
            });
        }
        if (d.appendChild) {
            if (d.body) {
                if (win.navigator.appName == 'Microsoft Internet Explorer') { // We unfortunately cannot use feature detection, since this is an IE bug with cloneNode nodes being appended
                    d.body.appendChild(ieFix(stringToDOM(arg)));
                }
                else {
                    var unappendedLeft = stringToDOM(arg, d.body, ns_xhtml, 'div').cloneNode(true); // We will not actually append the div tag (just using for providing XHTML namespace by default)
                    if (unappendedLeft) {
                        d.body.appendChild(unappendedLeft);
                    }
                }
            } else {
                d.documentElement.appendChild(stringToDOM(arg, d.documentElement, ns_xul, 'description')); // We will not actually append the description tag (just using for providing XUL namespace by default)
            }
        } else if (d.write) {
            d.write(arg);
        }/* else { // This could recurse if we ever add print!
            print(arg);
        }*/
    }
}

Examples

Currently there is 1 example

Example 1

This is how you could call echo()
echo('Hello', 'World');
And that would return
undefined

More about this Project

Download php.js

To easily include it in your code, every function currently available is stored in

Normal

Namespaced What is 'namespaced?'

To download use Right click, Save Link As
Generally the best way is to use a minified version and gzip it


Credits

Respect & awards go to everybody who has contributed in some way so far:

medalmedalBrett Zamir (link) for contributing to:
 array_diff, array_diff_assoc, array_diff_key, array_diff_uassoc, array_diff_ukey, array_fill_keys, array_fill_keys, array_filter, array_intersect, array_intersect_assoc, array_intersect_key, array_intersect_uassoc, array_intersect_ukey, array_keys, array_map, array_merge, array_merge_recursive, array_pop, array_search, array_slice, array_slice, array_splice, array_udiff, array_udiff_assoc, array_udiff_uassoc, array_uintersect, array_uintersect_assoc, array_uintersect_uassoc, array_unique, arsort, arsort, asort, asort, compact, current, each, end, extract, key, krsort, ksort, natcasesort, natcasesort, natsort, natsort, next, pos, prev, reset, rsort, rsort, shuffle, sort, sort, uasort, uasort, uksort, usort, classkit_import, classkit_method_add, classkit_method_copy, classkit_method_redefine, classkit_method_remove, classkit_method_rename, class_exists, get_class_methods, get_class_vars, get_declared_classes, get_object_vars, method_exists, property_exists, ctype_alnum, ctype_alpha, ctype_cntrl, ctype_digit, ctype_graph, ctype_lower, ctype_print, ctype_punct, ctype_space, ctype_upper, ctype_xdigit, date, date, date, date, date_default_timezone_get, date_default_timezone_set, date_parse, gettimeofday, gmdate, gmmktime, gmstrftime, idate, localtime, mktime, strftime, strtotime, timezone_abbreviations_list, timezone_identifiers_list, restore_exception_handler, set_exception_handler, fclose, feof, fgetc, fgetcsv, fgets, fgetss, filemtime, fopen, fpassthru, fread, fseek, ftell, pathinfo, pclose, popen, readfile, rewind, call_user_func, call_user_func_array, create_function, func_get_arg, func_get_args, func_num_args, get_defined_functions, get_defined_functions, register_shutdown_function, assert, assert_options, get_cfg_var, get_defined_constants, get_required_files, getenv, getlastmod, ini_alter, ini_get, ini_get_all, ini_restore, ini_set, php_ini_loaded_file, php_ini_scanned_files, phpversion, putenv, set_time_limit, include, include_once, require, require_once, atan2, expm1, fmod, log1p, rand, constant, define, defined, die, exit, exit, php_strip_whitespace, sleep, time_nanosleep, time_sleep_until, usleep, gopher_parsedir, setrawcookie, aggregate, aggregate_info, aggregate_methods, aggregate_methods_by_list, aggregate_methods_by_regexp, aggregate_properties, aggregate_properties_by_list, aggregate_properties_by_regexp, aggregation_info, deaggregate, preg_grep, sql_regcase, runkit_class_adopt, runkit_class_emancipate, runkit_function_add, runkit_function_copy, runkit_function_redefine, runkit_function_remove, runkit_function_rename, runkit_import, runkit_method_add, runkit_method_copy, runkit_method_redefine, runkit_method_remove, runkit_method_rename, runkit_superglobals, chunk_split, convert_uuencode, count_chars, echo, get_html_translation_table, lcfirst, levenshtein, localeconv, md5, md5_file, nl2br, nl_langinfo, parse_str, printf, quoted_printable_decode, quoted_printable_decode, quoted_printable_encode, setlocale, sha1, soundex, sprintf, str_getcsv, str_ireplace, str_replace, str_replace, str_shuffle, str_split, str_word_count, strcoll, strcspn, strip_tags, strlen, strnatcasecmp, strncmp, strrchr, strspn, strtok, strtr, substr_compare, substr_replace, ucfirst, vprintf, base64_decode, get_headers, get_meta_tags, parse_url, rawurldecode, rawurldecode, rawurlencode, rawurlencode, rawurlencode, urldecode, urldecode, urlencode, urlencode, doubleval, get_defined_vars, get_resource_type, gettype, import_request_variables, import_request_variables, is_array, is_array, is_binary, is_buffer, is_callable, is_real, is_resource, is_unicode, print_r, print_r, settype, strval, strval, unserialize, var_dump, var_export, utf8_decode
spacemedalOnno Marsman for contributing to:
 acos, acosh, asin, asinh, atan, atanh, ceil, cos, cosh, decbin, dechex, decoct, exp, floor, fmod, getrandmax, hypot, is_finite, is_infinite, is_nan, lcg_value, log, log10, max, max, min, min, mt_getrandmax, mt_rand, pi, pow, rand, round, sin, sinh, sqrt, tan, tanh, setcookie, preg_quote, addslashes, bin2hex, count_chars, html_entity_decode, htmlentities, htmlspecialchars_decode, levenshtein, ltrim, nl2br, nl2br, ord, parse_str, rtrim, soundex, str_ireplace, str_replace, str_replace, str_rot13, str_split, strcasecmp, strip_tags, stripos, stripslashes, stristr, strlen, strnatcmp, strncasecmp, strpbrk, strpos, strrev, strripos, strrpos, strstr, strtolower, strtoupper, substr, substr_count, trim, ucfirst, ucwords, base64_decode, empty, empty, is_array, is_bool, isset, utf8_decode, utf8_encode, utf8_encode
spacemedalMichael White (link) for contributing to:
 array_count_values, get_included_files, include, include_once, require, require_once, md5, number_format, parse_str, printf, sha1, sprintf, str_pad, strnatcmp, vprintf, http_build_query, floatval, is_object, print_r
spacemedalWaldo Malqui Silva for contributing to:
 array_fill, array_pad, array_product, array_rand, compact, count, range, abs, defined, ip2long, long2ip, implode, strcmp, strncmp, ucwords, settype
spacemedalPaulo Ricardo F. Santos for contributing to:
 getdate, microtime, constant, define, chop, chunk_split, quotemeta, sprintf, get_headers, gettype, is_double, is_float, is_integer, is_long, is_scalar
spacemedalJack for contributing to:
 compact, max, min, count_chars, htmlentities, md5, parse_str, soundex, sprintf, str_ireplace, strnatcmp, trim, utf8_encode
spacemedalJonas Raoni Soares Silva (link) for contributing to:
 shuffle, abs, setcookie, number_format, number_format, soundex, str_repeat, str_replace, str_rot13, ucwords, wordwrap, wordwrap
spacemedalPhilip Peterson for contributing to:
 sizeof, log10, round, exit, echo, get_html_translation_table, nl2br, str_replace, strchr, urldecode, urlencode, var_export
spacemedalAtes Goral (link) for contributing to:
 array_change_key_case, array_count_values, array_diff_key, each, get_class, preg_quote, addslashes, count_chars, str_rot13, stripslashes
spacemedalLegaev Andrey for contributing to:
 end, reset, file, file_get_contents, function_exists, include, include_once, http_build_query, is_array, is_object
spacemedalMartijn Wieringa for contributing to:
 array_shift, array_unshift, str_ireplace, str_split, strcasecmp, stripos, strnatcmp, substr
spacemedalNate for contributing to:
 array_merge, array_sum, array_unique, pathinfo, addslashes, echo, strncasecmp
spacemedalEnrique Gonzalez for contributing to:
 file_exists, filesize, decbin, decoct, deg2rad, rad2deg
spacemedalPhilippe Baumann for contributing to:
 base_convert, bindec, dechex, hexdec, octdec, empty
spacemedalTheriault for contributing to:
 array_multisort, quoted_printable_decode, quoted_printable_decode, quoted_printable_encode, quoted_printable_encode
spacemedalWebtoolkit.info (link) for contributing to:
 crc32, md5, sha1, utf8_decode, utf8_encode
 
spacemedalAsh Searle (link) for contributing to:
 basename, printf, sprintf, vprintf
spacemedalCarlos R. L. Rodrigues (link) for contributing to:
 array_chunk, array_unique, date, levenshtein
spacemedalJani Hartikainen for contributing to:
 file, file_exists, file_get_contents, filesize
spacemedalOle Vrijenhoek for contributing to:
 convert_uuencode, convert_uuencode, quoted_printable_decode, str_word_count
spacemedaltravc for contributing to:
 rawurldecode, rawurlencode, urldecode, urlencode
spacemedalAlex for contributing to:
 get_html_translation_table, strip_tags, is_int
spacemedalAndrea Giammarchi (link) for contributing to:
 array_map, define, levenshtein
spacemedalErkekjetter for contributing to:
 ltrim, rtrim, trim
spacemedalGeekFG (link) for contributing to:
 krsort, ksort, time
spacemedalJohnny Mast (link) for contributing to:
 array_walk, array_walk_recursive, create_function
spacemedalMichael Grier for contributing to:
 array_unique, wordwrap, rawurlencode
spacemedald3x for contributing to:
 array, explode, unserialize
spacemedalmarrtins for contributing to:
 array_change_key_case, addslashes, stripslashes
spacemedalstag019 for contributing to:
 parse_str, parse_str, http_build_query
spacemedalAJ for contributing to:
 urldecode, urlencode
spacemedalAlfonso Jimenez (link) for contributing to:
 array_reduce, strpbrk
spacemedalAman Gupta for contributing to:
 base64_decode, utf8_decode
spacemedalArpad Ray (mailto:arpad@php.net) for contributing to:
 serialize, unserialize
spacemedalBreaking Par Consulting Inc (link) for contributing to:
 gettimeofday, localtime
spacemedalCaio Ariede (link) for contributing to:
 strtotime, strtotime
spacemedalDavid for contributing to:
 strtotime, is_numeric
spacemedalJosh Fraser (link) for contributing to:
 gettimeofday, localtime
spacemedalKELAN for contributing to:
 get_html_translation_table, gettype
spacemedalKarol Kowalski for contributing to:
 array_reverse, abs
spacemedalLars Fischer for contributing to:
 urldecode, urlencode
spacemedalMarc Palau for contributing to:
 mktime, strip_tags
spacemedalMirek Slugen for contributing to:
 htmlspecialchars, htmlspecialchars_decode
spacemedalOleg Eremeev for contributing to:
 str_replace, str_replace
spacemedalPellentesque Malesuada for contributing to:
 base64_decode, base64_encode
spacemedalPublic Domain (link) for contributing to:
 json_decode, json_encode
spacemedalSakimori for contributing to:
 strlen, wordwrap
spacemedalSteve Hilder for contributing to:
 strcmp, strncmp
spacemedalSteven Levithan (link) for contributing to:
 trim, parse_url
spacemedalThunder.m for contributing to:
 base64_decode, base64_encode
spacemedalTyler Akins (link) for contributing to:
 base64_decode, base64_encode
spacemedalgettimeofday for contributing to:
 date, idate
spacemedalgorthaur for contributing to:
 strcmp, strncmp
spacemedalmdsjack (link) for contributing to:
 include, trim
spacemedal0m3r for contributing to:
 array_diff_assoc
spacemedalAlexander Ermolaev (link) for contributing to:
 trim
spacemedalAllan Jensen (link) for contributing to:
 number_format
spacemedalAndreas for contributing to:
 setcookie
spacemedalAndrej Pavlovic for contributing to:
 serialize
spacemedalAnton Ongson for contributing to:
 str_replace
spacemedalArno for contributing to:
 htmlspecialchars
spacemedalAtli Þór for contributing to:
 nl2br
spacemedalBayron Guevara for contributing to:
 base64_encode
spacemedalBen Bryan for contributing to:
 print_r
spacemedalBenjamin Lupton for contributing to:
 number_format
spacemedalBlues (link) for contributing to:
 strftime
spacemedalBlues at link for contributing to:
 setlocale
spacemedalBobby Drake for contributing to:
 strip_tags
spacemedalBrad Touesnard for contributing to:
 date
spacemedalBryan Elliott for contributing to:
 date
spacemedalCagri Ekin for contributing to:
 parse_str
spacemedalChaosNo1 for contributing to:
 timezone_abbreviations_list
spacemedalChristian Doebler for contributing to:
 sleep
spacemedalCord for contributing to:
 is_array
spacemedalDaniel Esteban for contributing to:
 strpos
spacemedalDavid James for contributing to:
 get_class
spacemedalDavid Randall for contributing to:
 date
spacemedalDer Simon (link) for contributing to:
 echo
spacemedalDino for contributing to:
 serialize
spacemedalDiogo Resende for contributing to:
 number_format
spacemedalDouglas Crockford (link) for contributing to:
 gettype
spacemedalDxGx for contributing to:
 trim
spacemedalEric Nagel for contributing to:
 strip_tags
spacemedalEugene Bulkin (link) for contributing to:
 echo
spacemedalFGFEmperor for contributing to:
 mktime
spacemedalFelix Geisendoerfer (link) for contributing to:
 array_key_exists
spacemedalFrancesco for contributing to:
 empty
spacemedalFrancois for contributing to:
 htmlspecialchars_decode
spacemedalFremyCompany for contributing to:
 isset
spacemedalGabriel Paderni for contributing to:
 str_replace
spacemedalGaragoth for contributing to:
 serialize
spacemedalGilbert for contributing to:
 array_sum
spacemedalHoward Yeend for contributing to:
 number_format
spacemedalHyam Singer (link) for contributing to:
 exit
spacemedalJ A R for contributing to:
 end
spacemedalJalal Berrami for contributing to:
 import_request_variables
spacemedalKirk Strobeck for contributing to:
 strlen
spacemedalKristof Coomans (SCK-CEN (Belgian Nucleair Research Centre)) for contributing to:
 strnatcasecmp
spacemedalLH for contributing to:
 empty
spacemedalLeslie Hoare for contributing to:
 rand
spacemedalLincoln Ramsay for contributing to:
 basename
spacemedalLinuxworld for contributing to:
 bin2hex
spacemedalLuke Godfrey for contributing to:
 strip_tags
spacemedalLuke Smith (link) for contributing to:
 number_format
spacemedalManish for contributing to:
 is_array
spacemedalMarc Jansen for contributing to:
 empty
spacemedalMarco for contributing to:
 get_html_translation_table
spacemedalMartin Pool for contributing to:
 strnatcasecmp
spacemedalMateusz "loonquawl" Zalega for contributing to:
 htmlspecialchars_decode
spacemedalMatt Bradley for contributing to:
 is_int
spacemedalMeEtc (link) for contributing to:
 date
spacemedalMick@el for contributing to:
 stripslashes
spacemedalNathan for contributing to:
 htmlspecialchars
spacemedalNick Callen for contributing to:
 wordwrap
spacemedalNorman "zEh" Fuchs for contributing to:
 utf8_decode
spacemedalOle Vrijenhoek (link) for contributing to:
 filemtime
spacemedalOzh for contributing to:
 dirname
spacemedalPaul for contributing to:
 exit
spacemedalPedro Tainha (link) for contributing to:
 unserialize
spacemedalPeter-Paul Koch (link) for contributing to:
 date
spacemedalPierre-Luc Paour for contributing to:
 strnatcasecmp
spacemedalPul for contributing to:
 strip_tags
spacemedalPyerre for contributing to:
 checkdate
spacemedalReverseSyntax for contributing to:
 htmlspecialchars_decode
spacemedalRival for contributing to:
 number_format
spacemedalRobin for contributing to:
 is_nan
spacemedalSanjoy Roy for contributing to:
 array_diff
spacemedalSaulo Vallory for contributing to:
 strncasecmp
spacemedalScott Cariss for contributing to:
 htmlspecialchars_decode
spacemedalSimon Willison (link) for contributing to:
 str_replace
spacemedalSlawomir Kaniecki for contributing to:
 htmlspecialchars_decode
spacemedalSoren Hansen for contributing to:
 count
spacemedalSteve Clay for contributing to:
 function_exists
spacemedalSubhasis Deb for contributing to:
 array_merge_recursive
spacemedalT. Wild for contributing to:
 filesize
spacemedalT.Wild for contributing to:
 substr
spacemedalT0bsn for contributing to:
 crc32
spacemedalThiago Mata (link) for contributing to:
 call_user_func_array
spacemedalTim Wiel for contributing to:
 date
spacemedalTim de Koning for contributing to:
 is_numeric
spacemedalTod Gentille for contributing to:
 log10
spacemedalValentina De Rosa for contributing to:
 strspn
spacemedalVictor for contributing to:
 ip2long
spacemedalWagner B. Soares for contributing to:
 strtotime
spacemedalXoraX (link) for contributing to:
 dirname
spacemedalYUI Library: link for contributing to:
 setlocale
spacemedalYannoo for contributing to:
 mktime
spacemedalYves Sucaet for contributing to:
 utf8_encode
spacemedalbaris ozdil for contributing to:
 mktime
spacemedalbooeyOH for contributing to:
 preg_quote
spacemedalclass_exists for contributing to:
 get_declared_classes
spacemedaldate for contributing to:
 idate
spacemedaldjmix for contributing to:
 basename
spacemedaldptr1988 for contributing to:
 unserialize
spacemedalduncan for contributing to:
 array_unique
spacemedalecho is bad for contributing to:
 echo
spacemedalejsanders for contributing to:
 vsprintf
spacemedalgabriel paderni for contributing to:
 mktime
spacemedalger for contributing to:
 html_entity_decode
spacemedalhitwork for contributing to:
 utf8_decode
spacemedaljakes for contributing to:
 mktime
spacemedaljohn (link) for contributing to:
 html_entity_decode
spacemedaljohnrembo for contributing to:
 var_export
spacemedalkenneth for contributing to:
 explode
spacemedalmadipta for contributing to:
 get_html_translation_table
spacemedalmarc andreu for contributing to:
 html_entity_decode
spacemedalmetjay for contributing to:
 time
spacemedalmk.keck for contributing to:
 realpath
spacemedalmktime for contributing to:
 gmmktime
spacemedalnobbler for contributing to:
 htmlentities
spacemedalnoname for contributing to:
 get_html_translation_table
spacemedalpenutbutterjelly for contributing to:
 str_ireplace
spacemedalrezna for contributing to:
 stripslashes
spacemedalsankai for contributing to:
 array_count_values
spacemedalsetcookie for contributing to:
 setrawcookie
spacemedalsowberry for contributing to:
 utf8_encode
spacemedalstensi for contributing to:
 intval
spacemedalstrcasecmp, strcmp for contributing to:
 substr_compare
spacemedaltaith for contributing to:
 is_numeric
spacemedaluestla for contributing to:
 strtr

Your name here?

Contributing is as easy as adding a comment with better code, or code for a new function.
Any contribution leading to improvement will directly get your name & link here.


Coming Project features

Project features that we are currently working on:

  • Done - Site. A place for php.js of it's own. See: phpjs.org.
  • Done - Compile. Compile your own php.js version, with only the functions you need. Should generate a hash with which you can retrieve latest versions of your php.js combination.
  • Done - Testsuite. A better test-suite that can be ran locally so developers can easily test before commiting. Also the testing itself should be more thorough.
  • Done - Versioning. Individual functions are versioned, but the entire library should be versioned as well.

Stay up to date

You can track my blog rss articles and rss comments. You may also find my rss bookmarks interesting. Or twitter Follow me on Twitter


Like this article?

   Then Dzone it!
Or use another bookmark button below to show your support &
help me spread the word.


tags: programming, php, javascript, phpjs
category: Programming - Javascript - PHP equivalents
read: 11,728 times

Add Comment

PHP.JS is outgroing this blog and moving to it's own space. Please leave your comment here: http://phpjs.org/functions/echo

Comments

#20. Kevin on 25 January 2009

Member avatar: Kevin@ Brett Zamir: Noted. I don't mind big comments. Relevant info should be here, and people should know how to use ctrl+f :)

#19. Brett Zamir on 18 January 2009

Gravatar.com: Brett ZamirAs far as output buffering, I plan to shortly discuss my thoughts on how this, as with other issues, can be solved without too much pain for maintenance with a global instead, but if not, being dependent on echo would be fine by me.

By the way, maybe the function could also test

if (document.body) {
... [more] document.body.appendChild(stringToDOM(arg));
}
else {
document.documentElement.appendChild(stringToDOM(arg));
}

to see if there IS a document.body, in case we are in an XML context (like XUL), and if not, append after the last element in the document.

As far as the speed, in my crude tests just now in JavaScript, there seems to be no difference in JavaScript between returning with null and not returning anything. But in PHP there is apparently a slight difference according to the FAQ linked from the PHP documentation: http://www.faqts.com/knowledge_base/view.phtml/aid/1/fid/40 , and the behavior of echo is not to return anything (while print returns 1), so I think there's no reason to return null specifically (takes a little more space in the already big function!) :)

As far as implementing the DOM functions, you're right, there is no place I know of, except serialize() if it handles DOM objects, and DOMDocument::saveXML, DOMDocument::loadXML . (speaking of the DOM in PHP (as in DOMDocument::validate), I'd LOVE to get XML validation in JS somehow).

But the note about the DOM functions was otherwise more just of an interesting aside (if you don't mind my overloading the comments here!).

#18. Kevin on 17 January 2009

Member avatar: Kevinunfortunately, right now i cannot implement print as rhino already provides it. will have to change the testsuite later on.

out buffering is a great idea. we should first make all functions that print something rely on echo,
and have echo collect a buffer. i can see this working.

... [more] does that really effect the speed, yes?

notes removed.

I don't see yet where else we we should implement those dom functions. I have to say I don't work with that stuff on a daily basis.

#17. Brett Zamir on 17 January 2009

Gravatar.com: Brett ZamirSorry, if you did apply my changes for an independent version of print(), this should be changed to also apply the fix for stringToDOM():

if (document.createDocumentFragment && document.createTextNode && document.appendChild) {
stringToDOM(arg);
}


to

if (document.createDocumentFragment && document.createTextNode && document.appendChild) {
document.body.appendChild(stringToDOM(arg));
}

#16. Brett Zamir on 17 January 2009

Gravatar.com: Brett ZamirOne important thing first...The line

stringToDOM(arg);


needs to be changed to:

document.body.appendChild(stringToDOM(arg));


Now...print() would be the same with the following differences:

This line at the top:
var arg = '', argc = arguments.length, argv = arguments, i = 0;


can be entirely removed in print(). print() should also have "arg" added as an explicit function parameter (unless you want to merge the functions--see below).

To get the marginal speed difference with echo, you don't even need the line "return null" because functions always return undefined when not specified (which is probably a little closer to the PHP behavior if we get picky).

The for loop at the end can be replaced with the following shorter version if you are making an independent version for print():

if (document.createDocumentFragment && document.createTextNode && document.appendChild) {
stringToDOM(arg);
} else if (document.write) {
document.write(arg);
}
return 1;


Note that if you did decide to have print() call echo() and just let its single argument cycle through the for loop one time, you'd have to still:
1) avoid potential recursion by avoiding the print(arg) call (as I did above for a dedicated version of print())
2) return 1 instead of not returning anything

Also, you can remove the notes to this function now (and for print()).

By the way, I realized that the stringToDOM() function can be stripped down a tiny bit more by changing substr() references to slice() (same behavior with one argument)--and substring() calls could be changed to slice() in cases where the 2nd argument would never be negative, though that would be harder to gauge without going through the code.

After going through the stringToDOM() code a little more, besides the shortening just mentioned, I realized that a little bit more could be done, such as allow namespaces on elements and attributes when parsing to DOM. I'm not sure though when I may have time to get to it (have some deadlines now), but I hope to get to it eventually.

It would be cool if there could be some what we could specify where we wanted the echo to go (e.g., if we didn't want it in the body). You know, I think we should be able to actually implement the PHP output buffer functions by configuring a parameter (as in the global php_js) which allowed the output from such functions to be captured and aggregated (until flushed/cleaned) and then output later or assigned to a variable!

As an extended aside, another great thing about the stringToDOM() and DOMToString() functions is that they could be combined to make a standards-compliant version of the DOM level 3 Load-and-Save module for serialization and parsing (currently not supported in Firefox and probably other browsers).

For example, using the skeleton code within the source at https://bugzilla.mozilla.org/attachment.cgi?id=333875 (for Mozilla bug https://bugzilla.mozilla.org/show_bug.cgi?id=155749 ), they could be used within the code for LSSerializer.prototype.writeToString and LSParser.prototype.parse .

Thus you could parse in any browser in a compliant fashion with something like this:

var lsInput = DOMImplementationLS.createLSInput().stringData = '<myXml/>';
 
var doc = DOMImplementationLS.createLSParser(1, null).parse(lsInput);


and serialize in any browser with something like this:

var ser = DOMImplementationLS.createLSSerializer();
var str = ser.writeToString(document);


Admittedly it might not be pretty, but it's standard (and can easily be wrapped as with the current Firefox and IE equivalents).

#15. Kevin on 16 January 2009

Member avatar: Kevin@ der_simon & Brett Zamir: First of all, Der Simon Thank you so much for coming to us and offering your great code to our project. It seems we can put it to good use.

My main concern was that for such a little function, it would be a lot of code. There's no room in PHP.JS for global dependencies so it would really have to be duplicated inside the functions. So a really bloated echo would be the result.

I'm okay with it now because:
... [more] - Brett you did a great job trimming it down the the essentials that are important to us.
- I have actually gotten some work done on the public compiler, which will enable people to optionally include echo in their package.

Never ceases to amaze me. The simplest functions sometimes need the biggest chunks of code ;)

Anyway, great effort both.

PS. Can we alias print to echo?

#14. Brett Zamir on 15 January 2009

Gravatar.com: Brett ZamirSince Kevin stated it might be possible to use innerDOM, I took it upon myself to check with Der Simon to see if we could release under MIT.

Although it is still somewhat large for the average PHP-JS function, with a few superficial tweaks to the already terse code (such as removing a couple document.all blocks), and by just using one of his functions (the only one needed by echo), we can get something as relatively small as this:

function stringToDOM(q){
var d=document;
function r(a){
return a.replace(/\r/g,' ').replace(/\n/g,' ');
}
function s(a){
return a.replace(/&amp;/g,'&').replace(/&gt;/g,'>').replace(/&lt;/g,'<').replace(/&nbsp;/g,' ').replace(/&quot;/g,'"');
}
function t(a){
return a.replace(/ /g,'');
}
function u(a){
var b,c,e,f,g,h,i;
b=d.createDocumentFragment();
c=a.indexOf(' ');
if(c===-1){
b.appendChild(d.createElement(a.toLowerCase()))
}
else{
i=t(a.substring(0,c)).toLowerCase();
a=a.substr(c+1);
b.appendChild(d.createElement(i));
while(a.length){
e=a.indexOf('=');
if(e>=0){
f=t(a.substring(0,e)).toLowerCase();
g=a.indexOf('"');
a=a.substr(g+1);
g=a.indexOf('"');
h=s(a.substring(0,g));
a=a.substr(g+2);
b.lastChild.setAttribute(f,h)
}else{
break
}
}
}
return b
}
function v(a,b,c){
var e,f;
e=b;
c=c.toLowerCase();
f=e.indexOf('</'+c+'>');
a=a.concat(e.substring(0,f));
e=e.substr(f);
while(a.indexOf('<'+c)!=-1){
a=a.substr(a.indexOf('<'+c));
a=a.substr(a.indexOf('>')+1);
e=e.substr(e.indexOf('>')+1);
f=e.indexOf('</'+c+'>');
a=a.concat(e.substring(0,f));
e=e.substr(f)
}
return b.length-e.length
}
function w(a){
var b,c,e,f,g,h,i,j,k,l,m,n,o,p,q;
b=d.createDocumentFragment();
while(a&&a.length){
c=a.indexOf('<');
if(c===-1){
a=s(a);
b.appendChild(d.createTextNode(a));
a=null
}
else if(c){
q=s(a.substring(0,c));
b.appendChild(d.createTextNode(q));
a=a.substr(c)
}
else{
e=a.indexOf('<!--');
if(!e){
f=a.indexOf('-->');
g=a.substring(4,f);
g=s(g);
b.appendChild(d.createComment(g));
a=a.substr(f+3)
}
else{
h=a.indexOf('>');
if(a.substring(h-1,h)==='/'){
i=a.indexOf('/>');
j=a.substring(1,i);
b.appendChild(u(j));
a=a.substr(i+2)
}
else{
k=a.indexOf('>');
l=a.substring(1,k);
m=d.createDocumentFragment();
m.appendChild(u(l));
a=a.substr(k+1);
n=a.substring(0,a.indexOf('</'));
a=a.substr(a.indexOf('</'));
if(n.indexOf('<')!=-1){
o=m.lastChild.nodeName;
p=v(n,a,o);
n=n.concat(a.substring(0,p));
a=a.substr(p)
}
a=a.substr(a.indexOf('>')+1);
m.lastChild.appendChild(w(n));
b.appendChild(m)
}
}
}
}
return b
}
return w(q)
}


I suggest incorporating his useful and standards-compliant method (and also adding print() too), if you were still open to it...

(Maybe it would be even more standards compliant if it checked for createElementNS support, but using the function in XUL still works ok for me)

#13. der_simon on 15 January 2009

Gravatar.com: der_simonHi,

im the author of the innerDOM-Script and I'm happy that anyone really cares about my few lines of code. I'm way out of the programming business, so I can only partly partitiate.

What I couldn't see from my point is: Whould it help to contribiute the innerDOM-Script to your project or not? The php.js page says:
... [more]
“There's no good place for a package like http://innerdom.sourceforge.net/

So if it would be helpful I'm willing to contribute my code.

Regard from Germany

Der Simon

#12. Kevin on 14 November 2008

Member avatar: Kevin@ Nate: I believe it would upset a lot of peope if we were to use innerHTML (considering "echo is bad"'s comments). innerDOM seems to be a solution, but we can't include it into php.js without changing php.js' nature. And to do that for only echo, would make inpracticle an understatement. We'll have to think some more on the innerDOM thing I guess: maybe we could ask it's author if we can just copy a portion of his code into this function directly. That would:
- work
- not change php.js' standalone-lyness
- make echo a big function ;)

... [more] Thank you very much for sharing your thoughts and code on this with us. For now, I've at least comitted your changes.

#11. Nate on 13 November 2008

Gravatar.com: NateThere are a few problems with this function.

1. There is a misspelling. The code

var txt = document.createTextNode(aarg);

Should read
var txt = document.createTextNode(arg);


2. After
docFragment.appendChild(txt);

you need the line
document.body.appendChild(docFragment);


I tested it with Firefox, IE, Opera, and Chrome (via wine), and they all worked (on Linux).

3. Like Philip Peterson pointed out, createTextNode() converts HTML to text. I still think that innerHTML() is better because it actually works (and it's fast). Though it might not be practical for this project, you could use the innerDOM script from http://innerdom.sourceforge.net/ to achieve the same effect as innerHTML() and adhere to "standards."

#10. Kevin on 03 November 2008

Member avatar: Kevin@ Waldo Malqui Silva: Hi there! Good to have you back Waldo! I've changed all the _argos credits to Waldo Malqui Silva.

We track the 'unported' functions in SVN, which can also be viewed here:
http://trac.plutonia.nl/projects/phpjs/browser/trunk/_unported

... [more] Everytime we create a new function it's moved from ./_unported to ./functions

I'll be looking forward to seeing some of your excellent work again. And your english i fine btw ;) ciao!

#9. waldo malqui silva on 29 October 2008

Gravatar.com: waldo malqui silvaHI, Kevin I'm back from long tiime, I wanna know if is possible 2 things:

1.- Change mi nick (_argos) by my real name (Waldo Malqui Silva) :p
2.- If you have a TODO list of functions to port.

... [more]
I'm happy to back and see more functions that in my last visit. I promise practice more my english :p

PD: I'm working in a customizable download for the project like mootools 1.11 (packages¿?) based on the PHP functions group :p

#8. Kevin on 20 October 2008

Member avatar: Kevin@ Philip Peterson: I've fixed the first issue, we still have to work on the second one.

#7. Philip Peterson on 18 October 2008

Gravatar.com: Philip PetersonAggh, sorry to clog up the comments, but there's also another problem: using createTextNode and then appending it like that converts all the special characters (e.g. tags) to HTML entities, thus reducing the usability of HTML formatting in echo().

#6. Philip Peterson on 18 October 2008

Gravatar.com: Philip PetersonAlso, this is a very pressing issue. In Firefox, at the line

[CODE]
document.appendChild(elmt);
[/CODE]

the script breaks, because it should be (for Firefox at least)

[CODE]
body.appendChild(elmt);
[/CODE]

#5. Philip Peterson on 14 October 2008

Gravatar.com: Philip PetersonFrom Ronsguide.com:

var docFragment = document.createDocumentFragment();
var txt = document.createTextNode("my text node");
docFragment.appendChild(txt);
... [more]
I guess probably something like that? (note that I am not "echo is bad".)

Perhaps there should be an alias print() which would take one argument? It may also be useful to handle \b things (I think php does this, but I'm not sure), which could be accomplished by inserting some text that appears nowhere else in the document (like [COD_92993] or something) and then modify the .innerHTML of the body by removing that [COD_92993] plus as many characters as there are \b's.

#4. Kevin on 17 April 2008

Member avatar: Kevin@ echo is bad: I've never used that function, could you tell me:
- this is what the code Should look like?
- your name to include in the comment

#3. echo is bad on 16 April 2008

Default avatar:echo is badUsing innerHTML on the BODY is very dangerous because you will break all references to HTMLElements that were done before !

I strongly recommend you to use document.createDocumentFragment.

#2. Kevin on 15 April 2008

Member avatar: KevinProbably because it's executing a document.write from outside the real document, don't you think?

#1. Philip Peterson on 15 April 2008

Default avatar:Philip PetersonI think this function is breaking php.js tester x.x