online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
<?php function ph($pass) { return password_hash($pass, PASSWORD_DEFAULT); } function pv($pass, $hash) { return password_verify($pass, $hash); } $haslo = 'wilku123'; echo '1. '.$haslo.' - '.ph($haslo).PHP_EOL; echo '2. '.$haslo.' - '.ph($haslo).PHP_EOL; echo PHP_EOL; $hash = ph($haslo); echo '3. '.$haslo.' - '.$hash.PHP_EOL; echo '3. '.$haslo.' - '.((pv($haslo, $hash)) ? '':'nie').'zgodny'.PHP_EOL; $bad = '[_xyz_]'; echo '3. '.$haslo.' - '.$hash.$bad.PHP_EOL; echo '3. '.$haslo.' - '.((pv($haslo, $hash.$bad)) ? '':'nie').'zgodny'.PHP_EOL;

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue