“convertir a texto php” Código de respuesta

PHP se convierte en cadena

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

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

convertir a texto 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

Respuestas similares a “convertir a texto php”

Preguntas similares a “convertir a texto php”

Más respuestas relacionadas con “convertir a texto php” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código