Skip to content

Instantly share code, notes, and snippets.

@matthewpoer
Created May 1, 2020 13:06
Show Gist options
  • Select an option

  • Save matthewpoer/2f1703b982121263c976250e1d33d805 to your computer and use it in GitHub Desktop.

Select an option

Save matthewpoer/2f1703b982121263c976250e1d33d805 to your computer and use it in GitHub Desktop.
<?php
$input = null;
$handle = fopen("php://stdin","r");
while($input != 'You are pretty') {
echo 'Tell me I\'m pretty.' . PHP_EOL;
$input = trim(fgets($handle));
}
echo 'You don\'t mean it' . PHP_EOL;
die(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment