Answers for "php string `"

PHP
2

php obscure string

/**
 * @param string|string[] $plain
 * @param int             $revealStart
 * @param int             $revealEnd
 * @param string          $obscuration
 * @return string|string[]
 */
function obscure(
    $plain,
    int $revealStart = 1,
    int $revealEnd = 0,
    string $obscuration = '*'
) {
    if (is_array($plain)) {
        return array_map(
            function ($plainPart) use ($revealStart, $revealEnd, $obscuration) {
                return obscure($plainPart, $revealStart, $revealEnd, $obscuration);
            },
            $plain
        );
    }
    $plain = (string) $plain;
    return mb_substr($plain, 0, $revealStart)
        . str_repeat(
            $obscuration,
            max(
                0,
                mb_strlen($plain) -
                ($revealStart + $revealEnd)
            )
        )
        . mb_substr(
            $plain,
            -$revealEnd,
            $revealEnd
        );
}
Posted by: Guest on October-19-2020
5

php heredoc

$output = <<<HTML
	<p>Lorem ipsum dolor sit amet consectetur<p>
	<a href="{$foobar}">click here</a>
HTML;
Posted by: Guest on March-13-2020
1

php syntax <<<

<?php
$str = <<<EOD
Example of string
spanning multiple lines
using heredoc syntax.
EOD;

/* More complex example, with variables. */
class foo
{
    var $foo;
    var $bar;

    function __construct()
    {
        $this->foo = 'Foo';
        $this->bar = array('Bar1', 'Bar2', 'Bar3');
    }
}

$foo = new foo();
$name = 'MyName';

echo <<<EOT
My name is "$name". I am printing some $foo->foo.
Now, I am printing some {$foo->bar[1]}.
This should print a capital 'A': \x41
EOT;
?>
Posted by: Guest on September-17-2020

Browse Popular Code Answers by Language