“Konwertuj na tekst PHP” Kod odpowiedzi

konwert PHP na ciąg

<?php
class StrValTest
{
    public function __toString()
    {
        return __CLASS__;
    }
}

// Prints 'StrValTest'
echo strval(new StrValTest);
?>
Binary Killer

Konwertuj na tekst PHP

<?php
require 'flag.php';
if (isset($_POST['password'])) {
    if (strcmp($_POST['password'], $flag) == 0)
    echo('<h1><div class="alert alert-success centered" role="alert"> Flag: '.$flag.' </div></h1>');
    else
    echo('<h1><div class="alert alert-danger centered" role="alert">Sorry, Wrong password!</div></h1>');
die;
}
?>
Panicky Partridge

Odpowiedzi podobne do “Konwertuj na tekst PHP”

Pytania podobne do “Konwertuj na tekst PHP”

Więcej pokrewnych odpowiedzi na “Konwertuj na tekst PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu