Answers for "string php"

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
0

heredoc php

<?php
$str = <<<EOD
Exemple de chaîne
sur plusieurs lignes
en utilisant la syntaxe Heredoc.
EOD;

/* Exemple plus complexe, avec des 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
Mon nom est "$name". J'affiche quelques $foo->foo.
Maintenant, j'affiche quelques {$foo->bar[1]}.
Et ceci devrait afficher un 'A' majuscule : \x41
EOT;
?>
Posted by: Guest on August-20-2020
0

heredoc php

$name = 'name';

$str =  <<<EOT
 my name is $name 
 line 2
 line 3
 
 " you can put double quote
 
 ' you can put simple quote
 
 few lines
 
EOT; // take it at the beginning of the line

echo $str;
Posted by: Guest on June-23-2020
0

php string

<?php 
$x = "Hello world!";
$y = 'Hello world!';

echo $x;
echo "<br>"; 
echo $y;
?>
Posted by: Guest on October-02-2021
0

strings php

returning portion of a string
Posted by: Guest on July-03-2020

Browse Popular Code Answers by Language