danack/esprintf

Use laminas-escaper with sprintf like function.

2.1.0 2023-01-20 03:04 UTC

This package is auto-updated.

Last update: 2024-04-20 19:44:45 UTC


README

sprintf mixed with Laminas escaper.

All placeholder strings must be explicitly labeled as to what type of escaping they will have done to them, so you can see in the source string if the correct escaping is done for the string location.

Usage

    $string = "<span class=':attr_class'>:html_message</span>";
    $params = [
        ':attr_class' => 'warning',
        ':html_message' => 'foo bar'
    ];
     
    echo esprintf($string, $params);

Supported escapers

':attr_'
':js_'
':css_' 
':uri_' 
':html_'

All go through to the relevant Zend Escaper method.

':raw_'

Allow a raw string to be used, for when the string has already been escaped.