Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 3dd46b1b96bcedc74e1a363a671472b1 > files > 11

ezcomponents-ConsoleTools-1.6.1-3.mga4.noarch.rpm

<?php

require_once "Base/src/base.php";

function __autoload( $className )
{
    ezcBase::autoload( $className );
}

$out = new ezcConsoleOutput();

$dialog = ezcConsoleQuestionDialog::YesNoQuestion( $out, "Is the answer to everything 42?", "y" );

if ( ( $res = ezcConsoleDialogViewer::displayDialog( $dialog ) ) === "y" )
{
    echo "You are so right! Don't forget your towel! :)\n";
}
else
{
    echo "You should better read some Douglas Adams!\n";
}



?>