This is the API docs for LemonStand V1, which has been discontinued. LemonStand is now a cloud based platform, available at lemonstand.com.

LemonStand API

h function

Defined in /init/custom_helpers.php, lines 18-21
Author LemonStand eCommerce Inc.
string function h(string $string)
$string string specifies a string to process.
{return} string returns the processed string.
Returns string in HTML-safe format, converting all applicable characters to HTML entities. Always use this function to output data created by users. The following code outputs a product name.
Product: <?= h($product->name) ?>